commit 28d9e56f474506b15ba01de8b7590ce87c6f25f6 Author: Alberto Sánchez Date: Tue Jun 30 06:12:35 2026 -0600 🎉 Initial commit - Hazard Odoo 16 project - Custom modules: hazard_shopify, hazard_inventory_report, hazard_website - Third-party modules: bi_sql_editor, query_deluxe, sql_request_abstract, l10n_mx_sat_sync_itadmin_ee - Docker setup: Odoo 16 + PostgreSQL 17 - Utility scripts: backup_hazard.sh, update_module.py - Agent configuration: .agents/AGENTS.md - Security: Enterprise modules, credentials, backups and production data excluded via .gitignore diff --git a/.agents/AGENTS.md b/.agents/AGENTS.md new file mode 100644 index 0000000..7c6f3fd --- /dev/null +++ b/.agents/AGENTS.md @@ -0,0 +1,90 @@ +# Reglas del Proyecto — Hazard (Odoo 16) + +## Información General +- **Empresa:** Hazard (marca de ropa urbana / streetwear) +- **Plataforma ERP:** Odoo 16 Community con módulos Enterprise +- **Ecommerce:** Shopify (sincronizado con Odoo vía módulo custom `hazard_shopify`) +- **Servidor:** VPS en Plesk bajo el dominio `tesscorp.com.mx` +- **Idioma de comunicación:** Siempre responder en español + +## Arquitectura Docker + +### Contenedores +| Contenedor | Imagen | Puerto Externo | Puerto Interno | +|---|---|---|---| +| `odoo-16-hazard-new` | `hazard-odoo-odoo` (custom, basada en `odoo:16`) | `16001` | `8069` | +| `odoo-16-db-hazard-new` | `postgres:17` | No expuesto | `5432` | + +### Volúmenes y Rutas +- **Módulos Enterprise:** `./Addons/enterprise` → `/mnt/enterprise` (dentro del contenedor) +- **Módulos Custom:** `./Addons/custom` → `/mnt/extra-addons` (dentro del contenedor) +- **Configuración Odoo:** `./Conf/odoo.conf` → `/etc/odoo/odoo.conf` +- **Docker Compose:** `/var/www/vhosts/tesscorp.com.mx/hazard.tesscorp.com.mx/docker-compose.yml` +- **IP interna del contenedor DB:** `172.18.0.2` (usada por MCP Server PostgreSQL) + +### Base de Datos +- **Base de datos principal (producción):** `hazard_new` +- **Usuario DB:** `odoo` +- **Contraseña DB:** `odoo` + +### Credenciales Odoo (XML-RPC) +- **URL:** `http://localhost:16001` +- **Base de datos:** `hazard_new` +- **Usuario admin:** `admin` +- **Contraseña admin:** `admin` + +## Módulos Custom Instalados +| Módulo | Estado | Ubicación | +|---|---|---| +| `hazard_shopify` | ✅ Instalado | `Addons/custom/hazard_shopify` | +| `hazard_inventory_report` | ✅ Instalado | `Addons/custom/hazard_inventory_report` | +| `hazard_website` | ❌ No instalado | `Addons/custom/hazard_website` | + +### Otros Módulos de Terceros +- `bi_sql_editor` — Editor SQL en interfaz Odoo +- `query_deluxe` — Consultas avanzadas desde Odoo +- `sql_request_abstract` — Abstracción para consultas SQL +- `l10n_mx_sat_sync_itadmin_ee` — Sincronización SAT México + +## Reglas de Desarrollo Obligatorias + +### Python +- **NUNCA** usar `print()`. Siempre usar `logging` con `_logger = logging.getLogger(__name__)`. +- Usar prefijos descriptivos en logs: `_logger.info("[Módulo] Mensaje")`. +- Siempre agregar docstrings a funciones y clases. +- Preferir código legible sobre código compacto. + +### Despliegue de Cambios +1. **Cambios en archivos `.py` (modelos/lógica):** Requiere restart del contenedor. + ```bash + docker restart odoo-16-hazard-new + ``` +2. **Cambios en estructura de tablas (fields nuevos):** Requiere restart + actualización del módulo. + ```bash + docker restart odoo-16-hazard-new + # Luego ejecutar el script de actualización: + python3 update_module.py + ``` +3. **Cambios solo en XML/vistas/reportes:** Solo requiere actualización del módulo (sin restart). + +### Seguridad y Respaldos +- **NUNCA** ejecutar `UPDATE` o `DELETE` masivos sin respaldo previo. +- Script de respaldo: `backup_hazard.sh` (respalda DB + código, retención 15 días). +- Los backups se suben a Google Drive automáticamente vía Plesk. + +### Código de Barras +- Formato EAN13 estandarizado con estructura `20000...` (ej. `2000010012749`). +- NUNCA crear scripts que alteren la secuencia de códigos de barras. + +### Archivos que NO se deben modificar +- Módulos en `/mnt/enterprise` (módulos oficiales de Odoo Enterprise). +- Solo modificar código en `/mnt/extra-addons` (módulos custom). + +## Scripts Útiles del Proyecto +| Script | Propósito | Comando | +|---|---|---| +| `backup_hazard.sh` | Respaldo completo (DB + código) | `bash backup_hazard.sh` | +| `update_module.py` | Actualizar módulo hazard_shopify via XML-RPC | `python3 update_module.py` | + +## Conexión MCP Server PostgreSQL +El agente tiene acceso directo de solo lectura a la base de datos `hazard_new` a través del MCP Server configurado en `mcp_config.json`. Usar la herramienta `query` del servidor `odoo-postgres` para consultas SQL cuando sea necesario inspeccionar datos. diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..88135ad --- /dev/null +++ b/.dockerignore @@ -0,0 +1,5 @@ +*.zip +*.sql +*.dump +logs/ +backups/ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5475595 --- /dev/null +++ b/.gitignore @@ -0,0 +1,69 @@ +# ============================================ +# .gitignore — Proyecto Hazard (Odoo 16) +# ============================================ + +# --- Módulos Enterprise (propietarios de Odoo, 1.6GB) --- +Addons/enterprise/ + +# --- Backups y Dumps de Base de Datos --- +backups/ +*.sql +*.dump +*.bak + +# --- Archivos pesados y paquetes --- +*.zip +odoo_deployment_package.zip + +# --- Datos de producción (CSVs, Excel, Word, PDF) --- +*.csv +*.xlsx +*.docx +*.pdf + +# --- Configuración con credenciales --- +# (Se incluye un template: Conf/odoo.conf.example) +Conf/odoo.conf + +# --- Python --- +__pycache__/ +*.py[cod] +*$py.class +*.so +*.egg-info/ +dist/ +build/ +*.egg + +# --- Entornos virtuales --- +venv/ +.venv/ +env/ + +# --- Logs --- +logs/ +*.log + +# --- Archivos del sistema --- +.DS_Store +Thumbs.db +*.swp +*.swo +*~ + +# --- Carpetas del servidor/hosting --- +.well-known/ +.php-ini +.php-version +git/ + +# --- Archivos temporales del proyecto --- +scratch/ + +# --- IDE y editores --- +.vscode/ +.idea/ +*.code-workspace + +# --- Node (si se usa para MCP o herramientas) --- +node_modules/ diff --git a/Addons/custom/bi_sql_editor/README.rst b/Addons/custom/bi_sql_editor/README.rst new file mode 100644 index 0000000..c9ad45c --- /dev/null +++ b/Addons/custom/bi_sql_editor/README.rst @@ -0,0 +1,197 @@ +============= +BI SQL Editor +============= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:327d027ee785e0d7ff932ba533aef3579798872320e6ea84057f7f224e144198 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/16.0/bi_sql_editor + :alt: OCA/reporting-engine +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/reporting-engine-16-0/reporting-engine-16-0-bi_sql_editor + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module extends the functionality of reporting, to support creation +of extra custom reports. +It allows user to write a custom SQL request. (Generally, admin users) + +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: + +Configuration +============= + +* Go to Dashboard / Configuration / SQL Views + +* tip your SQL request + + .. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/01_sql_request.png + :width: 800 px + +* Select the group(s) that could have access to the view + + .. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/02_security_access.png + :width: 800 px + +Optionnaly, you can add a domain. + +A tipical domain in a multi company context is to write +``['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]`` +to make reporting depending on the current companies of the user. + +* Click on the button 'Validate SQL Expression' + +* Once the sql request checked, the module analyses the column of the view, + and propose field mapping. For each field, you can decide to create an index + and set if it will be displayed on the pivot graph as a column, a row or a + measure. + + .. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/03_field_mapping.png + :width: 800 px + +* Click on the button 'Create SQL elements'. (this step could + take a while, if view is materialized) + +* If it's a MATERIALIZED view: + + * a cron task is created to refresh + the view. You can so define the frequency of the refresh. + * the size of view (and the indexes is displayed) + + .. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.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 'Dashboards > SQL Reports' + +#. Select the desired report + + .. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/05_reporting_pivot.png + :width: 800 px + +* You can switch to 'Graph' or 'tree' views as any report. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* GRAP + +Contributors +~~~~~~~~~~~~ + +* 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 + +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. + +.. |maintainer-legalsylvain| image:: https://github.com/legalsylvain.png?size=40px + :target: https://github.com/legalsylvain + :alt: legalsylvain + +Current `maintainer `__: + +|maintainer-legalsylvain| + +This module is part of the `OCA/reporting-engine `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/Addons/custom/bi_sql_editor/__init__.py b/Addons/custom/bi_sql_editor/__init__.py new file mode 100644 index 0000000..903915c --- /dev/null +++ b/Addons/custom/bi_sql_editor/__init__.py @@ -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 diff --git a/Addons/custom/bi_sql_editor/__manifest__.py b/Addons/custom/bi_sql_editor/__manifest__.py new file mode 100644 index 0000000..f0ab5a0 --- /dev/null +++ b/Addons/custom/bi_sql_editor/__manifest__.py @@ -0,0 +1,25 @@ +# 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": "16.0.1.1.0", + "license": "AGPL-3", + "category": "Reporting", + "author": "GRAP,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/reporting-engine", + "depends": [ + "spreadsheet_dashboard", + "sql_request_abstract", + ], + "data": [ + "security/ir.model.access.csv", + "views/view_bi_sql_view.xml", + ], + "demo": ["demo/res_groups_demo.xml", "demo/bi_sql_view_demo.xml"], + "installable": True, + "uninstall_hook": "uninstall_hook", + "maintainers": ["legalsylvain"], +} diff --git a/Addons/custom/bi_sql_editor/demo/bi_sql_view_demo.xml b/Addons/custom/bi_sql_editor/demo/bi_sql_view_demo.xml new file mode 100644 index 0000000..29f7705 --- /dev/null +++ b/Addons/custom/bi_sql_editor/demo/bi_sql_view_demo.xml @@ -0,0 +1,53 @@ + + + + + Draft Incorrect SQL View + incorrect_view + + + + + Partners View + partners_view + + + + + + Modules by Authors + modules_view + + + + + diff --git a/Addons/custom/bi_sql_editor/demo/res_groups_demo.xml b/Addons/custom/bi_sql_editor/demo/res_groups_demo.xml new file mode 100644 index 0000000..eec24fd --- /dev/null +++ b/Addons/custom/bi_sql_editor/demo/res_groups_demo.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/Addons/custom/bi_sql_editor/hooks.py b/Addons/custom/bi_sql_editor/hooks.py new file mode 100644 index 0000000..3a7c1d4 --- /dev/null +++ b/Addons/custom/bi_sql_editor/hooks.py @@ -0,0 +1,11 @@ +# Copyright 2015-2017 Onestein () +# 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() diff --git a/Addons/custom/bi_sql_editor/i18n/am.po b/Addons/custom/bi_sql_editor/i18n/am.po new file mode 100644 index 0000000..f7b1ace --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/am.po @@ -0,0 +1,799 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" diff --git a/Addons/custom/bi_sql_editor/i18n/ar.po b/Addons/custom/bi_sql_editor/i18n/ar.po new file mode 100644 index 0000000..b2e9e69 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/ar.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "حفظ كمسودة" + +#~ msgid "Security" +#~ msgstr "الأمن" + +#~ msgid "Draft" +#~ msgstr "مسوّدة" diff --git a/Addons/custom/bi_sql_editor/i18n/bg.po b/Addons/custom/bi_sql_editor/i18n/bg.po new file mode 100644 index 0000000..3ecb776 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/bg.po @@ -0,0 +1,802 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Защита" diff --git a/Addons/custom/bi_sql_editor/i18n/bs.po b/Addons/custom/bi_sql_editor/i18n/bs.po new file mode 100644 index 0000000..78d9359 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/bs.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Postavi u pripremu" + +#~ msgid "Security" +#~ msgstr "Sigurnost" + +#~ msgid "Draft" +#~ msgstr "U pripremi" diff --git a/Addons/custom/bi_sql_editor/i18n/ca.po b/Addons/custom/bi_sql_editor/i18n/ca.po new file mode 100644 index 0000000..4717ca0 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/ca.po @@ -0,0 +1,894 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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: 2022-06-15 18:05+0000\n" +"Last-Translator: jabelchi \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" +"X-Generator: Weblate 4.3.2\n" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "%s (Còpia)" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "Accés %s" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "Context d'acció" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "Configuració d'acció" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +msgid "Allowed Groups" +msgstr "Grups permesos" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "Usuaris permesos" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. 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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +msgstr "" + +#. 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 "Camp de vista Bi SQL" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +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 "" +"Marqueu aquesta casella si voleu crear una opció \"agrupa per\" a la vista " +"de cerca" + +#. 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 "" +"Marqueu aquesta casella si voleu crear un índex en aquest camp. Això es " +"recomana per a camps cercables i agrupables, per reduir la durada" + +#. 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 "" +"Text separat per comes. Valors possibles: \"gràfic\", \"pivot\" o \"arbre\"" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "Crea 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 "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 "Tasca Cron que actualitzarà la vista materialitzada" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "Mida de la base de dades" + +#. 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 "Definiu aquí un context que s'utilitzarà per defecte en crear l'acció." + +#. 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 "" +"Definiu aquí la restricció d'accés a les dades.\n" +" Tingueu cura d'utilitzar el nom del camp amb el prefix 'x_'. Es crearà una " +"\"ir.rule\" global. Per exemple, una regla típica de múltiples empreses és\n" +" ['|', ('x_company_id','fill_de', [user.company_id.id]),('x_company_id','='," +"False)]." + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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 "Definició de regla addicional" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "Informació addicional" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "Field Context" +msgstr "" + +#. 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ó del camp" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "Tipus de camp" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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 "" +"Pel camp Odoo 'Many2one'.\n" +" Comodel del camp." + +#. 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 "" +"Per al camp Odoo \"Selecció\".\n" +" Llista d'opcions, especificada com una expressió Python que defineix una " +"llista de (clau, etiqueta) parells. Per exemple: [('blau', 'blau'), ('groc', " +"'groc')]" + +#. 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 qualificat complet del model transitori que es crearà." + +#. 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 vista 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 "Tipus de gràfic" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator +msgid "Group Operator" +msgstr "" + +#. 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 "Ha canviat de grup" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +msgstr "" + +#. 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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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à agrupat per" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "És índex" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "És vista materialitzada" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "Text materialitzat" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "Mesura" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 "Nom del model" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" +"No s'ha trobat columna.\n" +"El nom de les columnes ha de dur el prefix 'x_'." + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "Acció 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 "Vista gràfica Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "Menú Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "Model 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 "Vista pivot Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "Regla Odoo" + +#. 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 "Vista de cerca Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "Vista de llista Odoo" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "Només es suporten les vistes gràfica, pivot o llista" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "Obrir vista" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 "Refrescar vista materialitzada" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "Refrescar vista materialitzada %s" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "Fila" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "Definició de la regla" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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 "Camps SQL" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "Informes SQL" + +#. 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 "" +"La consulta SQL que s'inserirà com a vista. Assegureu-vos de:\n" +" * Posar un nom per a tots els camps seleccionats, especialment si utilitzeu " +"funcions SQL (com ara EXTRACT, ...);\n" +" * No fer servir 'SELECT *' o 'SELECT taula.*';\n" +" * Començar el nom de les columnes seleccionades amb '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 "Tipus 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 "Tipus SQL a la base de dades" + +#. 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 "Vista 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 "Vista i model SQL creats" + +#. 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 "Vistes SQL" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "Opcions seleccionades" + +#. 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 "Mida de les vistes materialitzades i els seus índexs" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Estat" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" +"Estat de la petició:\n" +" * 'Esborrany': No provat\n" +" * 'SQL vàlid': L'ordre SQL ha estat testada i és vàlida" + +#. 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 "" +"Sufix de la vista SQL. El nom complet SQL es calcularà i s'hi posarà com a " +"prefix 'x_bi_sql_view_'. La sintaxi seguirà: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "Nom tècnic" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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 "Es farà servir com a nom del camp Odoo, visible als usuaris" + +#. 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 "Això crearà vista Odoo, acció i menú" + +#. 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 "" +"Això intentarà crear una vista SQL, basada en l'ordre SQL i els models i " +"camps, basant-se en la configuració" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "Visibilitat llista" + +#. 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 "" +"Tipus del camp Odoo que es crearà. Deixeu en blanc si no voleu crear un camp " +"nou. Si està buit, aquest camp no es mostrarà disponible per a la cerca ni " +"per la funció d'agrupació" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "No disponible" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. 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 "Interfície d'usuari" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "Nom a mostrar" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "Vistes, acció i menú creats" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "No podeu crear índexs en vistes no materialitzades" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" +"Només podeu eliminar vistes en esborrany. Si voleu eliminar-les, primer " +"passeu-les esborrany." + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "booleà" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "caràcters" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "data" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "data-hora" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "comma flotant" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "enter" + +#. 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 "selecció" + +#. 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 "seqüència" + +#~ 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 "" +#~ "Esteu segur que voleu configurar l'esborrany d'aquesta vista SQL? " +#~ "Esborrarà la vista materialitzada, i tot el mapeig anterior realitzat amb " +#~ "les columnes" + +#~ msgid "Set to Draft" +#~ msgstr "Passar a esborrany" + +#, python-format +#~ msgid "%m/%d/%Y %H:%M:%S UTC" +#~ msgstr "%d/%m/%Y %H:%M:%S UTC" + +#, python-format +#~ msgid "%s Access %s" +#~ msgstr "%s Accés %s" + +#~ msgid "Context" +#~ msgstr "Context" + +#~ msgid "Create SQL View, Indexes and Models" +#~ msgstr "Crea una vista SQL, índexs i models" + +#~ msgid "Hidden" +#~ msgstr "Ocult" + +#~ msgid "Preview SQL Expression" +#~ msgstr "Previsualizar expressió SQL" + +#, python-format +#~ msgid "" +#~ "SQL Error while creating %s VIEW %s :\n" +#~ " %s" +#~ msgstr "" +#~ "Error SQL mentre es creava la vista %s %s :\n" +#~ " %s" + +#~ msgid "SQL Query" +#~ msgstr "Consulta SQL" + +#~ msgid "Security" +#~ msgstr "Seguritat" + +#~ msgid "Validate SQL Expression" +#~ msgstr "Validar ordre SQL" + +#, python-format +#~ msgid "You can only process this action on SQL Valid items" +#~ msgstr "Aquesta acció només pot processar-se sobre elements SQL vàlids" + +#~ msgid "this will refresh the materialized view" +#~ msgstr "Això refrescarà la vista materialitzada" + +#~ msgid "Draft" +#~ msgstr "Esborrany" diff --git a/Addons/custom/bi_sql_editor/i18n/cs.po b/Addons/custom/bi_sql_editor/i18n/cs.po new file mode 100644 index 0000000..50d85b1 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/cs.po @@ -0,0 +1,808 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Stav" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Nastavit na koncept" + +#~ msgid "Security" +#~ msgstr "Zabezpečení" + +#~ msgid "Draft" +#~ msgstr "Návrh" diff --git a/Addons/custom/bi_sql_editor/i18n/da.po b/Addons/custom/bi_sql_editor/i18n/da.po new file mode 100644 index 0000000..dd2673b --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/da.po @@ -0,0 +1,805 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Delstat" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Sikkerhed" + +#~ msgid "Draft" +#~ msgstr "Udkast" diff --git a/Addons/custom/bi_sql_editor/i18n/de.po b/Addons/custom/bi_sql_editor/i18n/de.po new file mode 100644 index 0000000..e7b5414 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/de.po @@ -0,0 +1,835 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 2017 +# Rudolf Schnapka , 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 \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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "%s (Kopie)" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "Zugriff %s" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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 "Verfügbar" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +msgstr "" + +#. 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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Status" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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 "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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ 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" + +#~ msgid "Set to Draft" +#~ msgstr "Auf Entwurf setzen" + +#, python-format +#~ msgid "%m/%d/%Y %H:%M:%S UTC" +#~ msgstr "%d.%m.%Y %H:%M:%S UTC" + +#, python-format +#~ msgid "%s Access %s" +#~ msgstr "%s Zugriff %s" + +#~ msgid "Security" +#~ msgstr "Sicherheit" + +#~ msgid "Draft" +#~ msgstr "Entwurf" + +#~ msgid "SQL Valid" +#~ msgstr "SQL gültig" diff --git a/Addons/custom/bi_sql_editor/i18n/el_GR.po b/Addons/custom/bi_sql_editor/i18n/el_GR.po new file mode 100644 index 0000000..90100e5 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/el_GR.po @@ -0,0 +1,803 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Ασφάλεια" diff --git a/Addons/custom/bi_sql_editor/i18n/en_GB.po b/Addons/custom/bi_sql_editor/i18n/en_GB.po new file mode 100644 index 0000000..2db60a1 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/en_GB.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Set to Draft" + +#~ msgid "Security" +#~ msgstr "Security" + +#~ msgid "Draft" +#~ msgstr "Draft" diff --git a/Addons/custom/bi_sql_editor/i18n/es.po b/Addons/custom/bi_sql_editor/i18n/es.po new file mode 100644 index 0000000..b640dd7 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/es.po @@ -0,0 +1,929 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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: 2023-12-21 23:59+0000\n" +"Last-Translator: Ivorra78 \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.17\n" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "%(model_name)s Acceso %(full_name)s" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "%s (Copia)" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "Acceso %s" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +msgstr "Necesita 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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +msgstr "Recuento de Archivos Adjuntos" + +#. 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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +msgstr "Promedio" + +#. 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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" +"De forma predeterminada, Odoo sumará los valores al agrupar. Si desea " +"modificar el comportamiento, elija un operador de grupo alternativo" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "Contexto de acción calculado" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "Contexto calculado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" +"Valor de contexto que se insertará para este campo en todas las vistas. Nota " +"importante: escriba un contexto con comillas simples." + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "Crear elementos SQL" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +msgstr "Contexto personalizado" + +#. 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 +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í la restricción de acceso a los datos.\n" +" Tenga cuidado de utilizar el nombre del campo con el prefijo 'x_'. Se " +"creará una 'ir.rule' global. Una regla típica de varias empresas es, por " +"ejemplo\n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "Borrar Elementos SQL" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "Eliminar UI" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +msgstr "Contexto del campo" + +#. 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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "Campos" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "Seguidores" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguidores (socios)" + +#. 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 "" +"Para el campo Odoo 'Many2one'.\n" +" Comodelo del campo." + +#. 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 "" +"Para el campo 'Selección' de Odoo.\n" +" Lista de opciones, especificada como una expresión Python que define una " +"lista de pares (clave, etiqueta). Por ejemplo: [('azul','Azul'), " +"('amarillo','Amarillo')]" + +#. 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 "Nombre completo cualificado del modelo transitorio que se creará." + +#. 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 "Nombre completo de la vista 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 "Tipo de gráfico" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator +msgid "Group Operator" +msgstr "Operador de grupo" + +#. 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 "Ha cambiado el grupo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +msgstr "Tiene Mensaje" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "Si está marcada, nuevos mensajes requieren su atención." + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "si está marcada, algunos mensajes tienen un error de entrega." + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" +"Imposible borrar campos si la vista está en estado 'Modelo Válido' o 'UI " +"Válido'." + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "Nombre del índice" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "Invisible" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "Es Seguidor" + +#. 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 "Se agrupa por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "Es Índice" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "Es una vista materializada" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" +"Se borrará la vista materializada, y todos los mapeos previos realizados con " +"las columnas" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +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__message_main_attachment_id +msgid "Main Attachment" +msgstr "Adjunto Principal" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "Texto materializado" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +msgstr "Máximo" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "medida" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "Message Delivery error" +msgstr "Error en entrega de mensaje" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "Mensajes" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "Mínimo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Modelo" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" +"No se ha encontrado ninguna columna.\n" +"El nombre de la columna debe ir precedido de 'x_'." + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "Nota" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "Número de acciones" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "Número de errores" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "Número de mensajes que requieren una acción" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Número de mensajes con error de entrega" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "Acción 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 de Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "Vista gráfica Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "Menú Odoo" + +#. 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 "Vista pivotante 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 "Regla Odoo" + +#. 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 "Vista de búsqueda Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "Vista en árbol de Odoo" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "Sólo se admiten las vistas de gráfico, pivote o árbol" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "Abrir vista" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "Opcional (oculto)" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "Opcional (mostrado)" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "Por favor, establezca modelos relacionados en los siguientes campos %s" + +#. 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" +msgstr "Actualizar" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "Refrescar vista materializada" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "Refrescar vista materializada %s" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "Fila" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "Definición de regla" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" +"Error SQL al crear %(materialized_text)s VISTA %(view_name)s :\n" +" %(error)s" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "Campos SQL" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "Informes SQL" + +#. 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 "" +"Solicitud SQL que se insertará como la vista. Tenga cuidado de :\n" +" * Establecer un nombre para todos los campos seleccionados, especialmente " +"si se utiliza una función SQL (como EXTRACT, ...);\n" +" * No utilice 'SELECT *' o 'SELECT table.*';\n" +" * anteponer 'x_' al nombre de las columnas seleccionables;" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "Tipo 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 "Tipo SQL en la base de datos" + +#. 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 "Vista 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 "Vista SQL y modelo creado" + +#. 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 "Vistas SQL" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "Opciones de selecció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 "Tamaño de la vista materializada y de sus índices" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" +"Estado de la solicitud:\n" +" * 'Borrador': No probado\n" +" * SQL válido La petición SQL ha sido comprobada y es válida" + +#. 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 "" +"Sufijo de la vista SQL. El nombre completo de SQL se calculará y llevará el " +"prefijo 'x_bi_sql_view_'. La sintaxis debe ser la siguiente: https://www." +"postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-" +"IDENTIFIERS" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +msgstr "Suma" + +#. 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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +msgstr "" +"Campos técnicos, utilizados en módulos que dependen de este para saber si " +"los grupos han cambiado, y que según el acceso debe ser actualizado." + +#. 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 "" +"Esto se utilizará como el nombre del campo de Odoo, que se muestra a los " +"usuarios" + +#. 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 "Esto creará la Vista, Acción y Menú de Odoo" + +#. 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 "" +"Esto intentará crear una vista SQL, basada en la petición SQL y los " +"correspondientes modelos transitorios y campos, según los ajustes" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "Visibilidad del árbol" + +#. 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 "" +"Tipo del campo Odoo que será creado. Mantenga vacío si no desea crear un " +"nuevo campo. Si esta vacío, este campo no será mostrado ni estará disponible " +"para búsqueda o agrupamiento por función" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "No disponible" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "Actualiza el acceso al modelo" + +#. 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 "" +"Actualizar acceso al modelo. Obligatorio si ha modificado la lista de grupos " +"después de haber creado el modelo" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "Interfaz de usuario" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "Ver nombre" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "Ver el pedido" + +#. 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 "Vistas, Acciones y Menús Creados" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "No se pueden crear índices en vistas no materializadas" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" +"Sólo puedes desvincular vistas borrador.Si quieres eliminarlas, primero " +"ponlas en borrador." + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "boletín" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "carácter" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "fecha" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "fecha y hora" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "flotador" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "entero" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "muchos para uno" + +#. 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 "secuencia" + +#~ 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" + +#~ msgid "" +#~ "Check this box if you want to add a context column in the field list " +#~ "view. Custom Context will be inserted in the created views." +#~ msgstr "" +#~ "Marque esta casilla si desea añadir una columna de contexto en la vista " +#~ "de lista de campos. Contexto personalizado se insertará en las vistas " +#~ "creadas." + +#~ msgid "Set to Draft" +#~ msgstr "Cambiar a borrador" + +#~ msgid "Use Context Field" +#~ msgstr "Utilizar campo de contexto" + +#~ msgid "SMS Delivery error" +#~ msgstr "Error en la entrega de sms" + +#, python-format +#~ msgid "%m/%d/%Y %H:%M:%S UTC" +#~ msgstr "%m/%d/%Y %H:%M:%S UTC" + +#, python-format +#~ msgid "%s Access %s" +#~ msgstr "%s Acceso %s" + +#~ msgid "Context" +#~ msgstr "Contexto" + +#~ msgid "Create SQL View, Indexes and Models" +#~ msgstr "Crear Vista SQL, Índices y Modelos" + +#~ msgid "Hidden" +#~ msgstr "Oculto" + +#~ msgid "Preview SQL Expression" +#~ msgstr "Vista previa expresión SQL" + +#, python-format +#~ msgid "" +#~ "SQL Error while creating %s VIEW %s :\n" +#~ " %s" +#~ msgstr "" +#~ "Error SQL al crear la VISTA %s %s :\n" +#~ " %s" + +#~ msgid "SQL Query" +#~ msgstr "Consulta SQL" + +#~ msgid "Security" +#~ msgstr "Seguridad" + +#~ msgid "Validate SQL Expression" +#~ msgstr "Validar expresión SQL" + +#, python-format +#~ msgid "You can only process this action on SQL Valid items" +#~ msgstr "Sólo puede procesar esta acción en elementos SQL válidos" + +#~ msgid "this will refresh the materialized view" +#~ msgstr "esto refrescará la vista materializada" + +#~ msgid "Draft" +#~ msgstr "No suscrito" diff --git a/Addons/custom/bi_sql_editor/i18n/es_AR.po b/Addons/custom/bi_sql_editor/i18n/es_AR.po new file mode 100644 index 0000000..bb01b71 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/es_AR.po @@ -0,0 +1,897 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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: 2023-04-07 20:23+0000\n" +"Last-Translator: Ignacio Buioli \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" +"X-Generator: Weblate 4.14.1\n" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "%s (Copia)" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "Acceso %s" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "Acción de Contexto" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "Acción de Ajustes" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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 "Disponible" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +msgstr "" + +#. 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 de Vista BI SQL" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +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 "" +"Marque esta casilla si desea crear una opción de '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 desea crear un índice en ese campo. Esto se " +"recomienda para campos que se pueden buscar y agrupar, 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. Valores posibles: \"graph\", \"pivot\" o \"tree\"" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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 "Tarea Cron que actualizará la vista materializada" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "Tamaño de la 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 se usará por defecto, al crear la acción." + +#. 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 "" +"Defina aquí la restricción de acceso a los datos.\n" +" Tenga cuidado de usar el nombre de campo con el prefijo 'x_'. Se creará una " +"'ir.rule' global. Una regla típica de varias compañías es, por ejemplo,\n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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 "Definición de 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_context +msgid "Field Context" +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 "Descripción de 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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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 "" +"Para campos de Odoo 'Many2one'.\n" +" Comodel del campo." + +#. 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 "" +"Para Campos de Odoo 'Selection'.\n" +" Lista de opciones, especificada como una expresión de Python que define una " +"lista de pares (clave, etiqueta). Por ejemplo: [('azul','Azul'), " +"('amarillo','Amarillo')]" + +#. 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 "Nombre Calificado Completo del modelo transitorio que se creará." + +#. 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 "Nombre completo de la vista 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 "Tipo de Gráfico" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__group_operator +msgid "Group Operator" +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 "Ha Cambiado de Grupo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "Nombre del Índice" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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á Agrupado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "Es Índice" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "Es una Vista Materializada" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ú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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "Texto Materializado" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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 "Medida" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" +"No se encontraron Columnas.\n" +"Los nombres de las columnas deben tener de prefijo 'x_'." + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "Acción de 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 de Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "Vista Gráfico de Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "Menú de Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "Modelo de 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 "Vista 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 "Regla de Odoo" + +#. 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 "Vista de Búsqueda de Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "Vista Lista de Odoo" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "Solo se soportan vistas gráfico, pivot o lista" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "Abrir Vista" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 "Recargar Vista Materializada" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "Recargar Vista Materializada %s" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "Fila" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "Definición de Regla" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +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 "Campos SQL" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "Reportes SQL" + +#. 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 "" +"Solicitud SQL que se insertará como la vista. Tenga cuidado de:\n" +" * Establezca un nombre para todos sus campos seleccionados, especialmente " +"si usa la función SQL (como EXTRACT, ...);\n" +" * No use 'SELECT *' o 'SELECT table.*';\n" +" * Prefije el nombre de las columnas seleccionables con '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 "Tipo 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 "Tipo SQL en la base de datos" + +#. 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 "Vista 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 "Vista SQL y Modelo Creado" + +#. 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 "Vistas SQL" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "Opciones de Selecció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 "Tamaño de la vista materializada y sus índices" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" +"Estado de la Solicitud:\n" +" * 'Borrador': No probado\n" +" * 'SQL Válido': La solicitud de SQL ha sido verificada y es válida" + +#. 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 "" +"Sufijo de la vista SQL. El nombre completo de SQL se calculará y tendrá el " +"prefijo 'x_bi_sql_view_'. La sintaxis debe seguir: https://www.postgresql." +"org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +msgstr "" + +#. module: bi_sql_editor +#: model: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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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 "" +"Esto se utilizará como el nombre del campo de Odoo, que se muestra a los " +"usuarios" + +#. 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 "Esto creará una Vista, Acción y Menú de Odoo" + +#. 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 "" +"Esto intentará crear una Vista SQL, basada en la solicitud SQL y el modelo " +"transitorio y los campos correspondientes, según la configuración" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "Visibilidad de la Lista" + +#. 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 "" +"Tipo de campo de Odoo que se creará. Manténgalo vacío si no desea crear un " +"nuevo campo. Si está vacío, este campo no se mostrará ni estará disponible " +"para buscar o agrupar por función" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "No Disponible" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "Actualizar Modelos de Acceso" + +#. 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 "" +"Actualizar Modelos de Acceso. Obligatorio si cambió la lista de grupos " +"después de haber creado el modelo" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "Interfaz de Usuario" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "Nombre de la Vista" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "Ordenar Vista" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "Vistas, Acción y Menú Creado" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "No puede crear índice en vistas no materializadas" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" +"Solo puede desvincular vistas de borrador. Si desea eliminarlas, primero " +"configúrelas como borrador." + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +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" + +#~ 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 desea configurar para redactar esta vista SQL? " +#~ "Borrará la vista materializada, y todo el mapeo anterior realizado con " +#~ "las columnas" + +#~ msgid "Set to Draft" +#~ msgstr "Restablecer a Borrador" + +#, python-format +#~ msgid "%m/%d/%Y %H:%M:%S UTC" +#~ msgstr "%m/%d/%Y %H:%M:%S UTC" + +#, python-format +#~ msgid "%s Access %s" +#~ msgstr "%s Acceso %s" + +#~ msgid "Context" +#~ msgstr "Contexto" + +#~ msgid "Create SQL View, Indexes and Models" +#~ msgstr "Crea una Vista SQL, Índices y Modelos" + +#~ msgid "Hidden" +#~ msgstr "Oculto" + +#~ msgid "Preview SQL Expression" +#~ msgstr "Previsualizar Expresión SQL" + +#, python-format +#~ msgid "" +#~ "SQL Error while creating %s VIEW %s :\n" +#~ " %s" +#~ msgstr "" +#~ "Error SQL mientras se creaba %s VIEW %s :\n" +#~ " %s" + +#~ msgid "SQL Query" +#~ msgstr "Consulta SQL" + +#~ msgid "Security" +#~ msgstr "Seguridad" + +#~ msgid "Validate SQL Expression" +#~ msgstr "Validar Expresión SQL" + +#, python-format +#~ msgid "You can only process this action on SQL Valid items" +#~ msgstr "Solo puede procesar esta acción en elementos SQL Válidos" + +#~ msgid "this will refresh the materialized view" +#~ msgstr "esto recargará la vista materializada" diff --git a/Addons/custom/bi_sql_editor/i18n/es_CL.po b/Addons/custom/bi_sql_editor/i18n/es_CL.po new file mode 100644 index 0000000..40e0ec6 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/es_CL.po @@ -0,0 +1,803 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ú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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Seguridad" diff --git a/Addons/custom/bi_sql_editor/i18n/es_CO.po b/Addons/custom/bi_sql_editor/i18n/es_CO.po new file mode 100644 index 0000000..b4db5f6 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/es_CO.po @@ -0,0 +1,803 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ú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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Seguridad" diff --git a/Addons/custom/bi_sql_editor/i18n/es_CR.po b/Addons/custom/bi_sql_editor/i18n/es_CR.po new file mode 100644 index 0000000..7aad358 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/es_CR.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Cambiar a borrador" + +#~ msgid "Security" +#~ msgstr "Seguridad" + +#~ msgid "Draft" +#~ msgstr "Borrador" diff --git a/Addons/custom/bi_sql_editor/i18n/es_DO.po b/Addons/custom/bi_sql_editor/i18n/es_DO.po new file mode 100644 index 0000000..2f6daf9 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/es_DO.po @@ -0,0 +1,803 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ú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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Seguridad" diff --git a/Addons/custom/bi_sql_editor/i18n/es_EC.po b/Addons/custom/bi_sql_editor/i18n/es_EC.po new file mode 100644 index 0000000..605c0c5 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/es_EC.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ú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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Cambiar a borrador" + +#~ msgid "Security" +#~ msgstr "Seguridad" + +#~ msgid "Draft" +#~ msgstr "Borrador" diff --git a/Addons/custom/bi_sql_editor/i18n/es_ES.po b/Addons/custom/bi_sql_editor/i18n/es_ES.po new file mode 100644 index 0000000..7d55b40 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/es_ES.po @@ -0,0 +1,803 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ú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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Draft" +#~ msgstr "Borrador" diff --git a/Addons/custom/bi_sql_editor/i18n/es_MX.po b/Addons/custom/bi_sql_editor/i18n/es_MX.po new file mode 100644 index 0000000..3e88311 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/es_MX.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Cambiar a borrador" + +#~ msgid "Security" +#~ msgstr "Seguridad" + +#~ msgid "Draft" +#~ msgstr "Borrador" diff --git a/Addons/custom/bi_sql_editor/i18n/es_PE.po b/Addons/custom/bi_sql_editor/i18n/es_PE.po new file mode 100644 index 0000000..42bb33f --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/es_PE.po @@ -0,0 +1,803 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Seguridad" diff --git a/Addons/custom/bi_sql_editor/i18n/es_PY.po b/Addons/custom/bi_sql_editor/i18n/es_PY.po new file mode 100644 index 0000000..fbc3bd5 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/es_PY.po @@ -0,0 +1,803 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Seguridad" diff --git a/Addons/custom/bi_sql_editor/i18n/es_VE.po b/Addons/custom/bi_sql_editor/i18n/es_VE.po new file mode 100644 index 0000000..ea3ff83 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/es_VE.po @@ -0,0 +1,806 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Provincia" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Seguridad" + +#~ msgid "Draft" +#~ msgstr "Borrador" diff --git a/Addons/custom/bi_sql_editor/i18n/et.po b/Addons/custom/bi_sql_editor/i18n/et.po new file mode 100644 index 0000000..a8a1f77 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/et.po @@ -0,0 +1,808 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Sea mustandiks" + +#~ msgid "Security" +#~ msgstr "Turvalisus" + +#~ msgid "Draft" +#~ msgstr "Mustand" diff --git a/Addons/custom/bi_sql_editor/i18n/eu.po b/Addons/custom/bi_sql_editor/i18n/eu.po new file mode 100644 index 0000000..be10714 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/eu.po @@ -0,0 +1,799 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" diff --git a/Addons/custom/bi_sql_editor/i18n/fa.po b/Addons/custom/bi_sql_editor/i18n/fa.po new file mode 100644 index 0000000..f51be82 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/fa.po @@ -0,0 +1,802 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "امنیت" diff --git a/Addons/custom/bi_sql_editor/i18n/fi.po b/Addons/custom/bi_sql_editor/i18n/fi.po new file mode 100644 index 0000000..0982dde --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/fi.po @@ -0,0 +1,805 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Tila" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Aseta luonnokseksi" + +#~ msgid "Draft" +#~ msgstr "Luonnos" diff --git a/Addons/custom/bi_sql_editor/i18n/fr.po b/Addons/custom/bi_sql_editor/i18n/fr.po new file mode 100644 index 0000000..f0c436e --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/fr.po @@ -0,0 +1,855 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-10-26 11:45+0000\n" +"PO-Revision-Date: 2022-10-26 11:45+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "%s (Copie)" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "Accès %s" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "Contexte de l'action" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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 "Disponible" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +msgstr "Moyenne" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "Vue SQL" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "Contexte calculé de l'action" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "Contexte calculé" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "Créer les éléments SQL" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +msgstr "Contexte personnalisé" + +#. 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 "" +"Definir ici un contexte qui sera utillisé par défault, lors de la création " +"de l'action." + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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 "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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "Champs" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +msgstr "Opérateur de groupe" + +#. 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 "A un changement de groupe" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "Texte materialisé" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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 "Mesure" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" +"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__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 "Règle Odoo" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "Optionelle (cachée)" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "Optionelle (affiché)" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +msgstr "Rafraichir" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "Rafraichir la vue matérialisée %s" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" +"Erreur SQL lors de la création de la vue matérialisée %(materialized_text)s " +"VIEW %(view_name)s :\n" +" %(error)s" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: 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:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "Rapports SQL" + +#. 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: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: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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Statut" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +msgstr "Somme" + +#. 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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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 "" +"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 +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "Tâche CRON qui va rafraichir la vue matérialisée" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" +"Vous pouvez seulement supprimer des vues en brouillon. Si vous voulez les " +"supprimer, veuillez le repasser à l'état de brouillon auparavant" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +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 "Séquence" + +#~ 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" + +#~ msgid "Set to Draft" +#~ msgstr "Remettre en brouillon" diff --git a/Addons/custom/bi_sql_editor/i18n/fr_CA.po b/Addons/custom/bi_sql_editor/i18n/fr_CA.po new file mode 100644 index 0000000..c10bd26 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/fr_CA.po @@ -0,0 +1,800 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" diff --git a/Addons/custom/bi_sql_editor/i18n/fr_CH.po b/Addons/custom/bi_sql_editor/i18n/fr_CH.po new file mode 100644 index 0000000..1e87727 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/fr_CH.po @@ -0,0 +1,803 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Etat" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Draft" +#~ msgstr "Brouillon" diff --git a/Addons/custom/bi_sql_editor/i18n/gl.po b/Addons/custom/bi_sql_editor/i18n/gl.po new file mode 100644 index 0000000..8056b9a --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/gl.po @@ -0,0 +1,802 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ú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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Draft" +#~ msgstr "Borrador" diff --git a/Addons/custom/bi_sql_editor/i18n/gl_ES.po b/Addons/custom/bi_sql_editor/i18n/gl_ES.po new file mode 100644 index 0000000..072ab1d --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/gl_ES.po @@ -0,0 +1,800 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" diff --git a/Addons/custom/bi_sql_editor/i18n/he.po b/Addons/custom/bi_sql_editor/i18n/he.po new file mode 100644 index 0000000..af6b296 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/he.po @@ -0,0 +1,802 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "אבטחה" diff --git a/Addons/custom/bi_sql_editor/i18n/hr.po b/Addons/custom/bi_sql_editor/i18n/hr.po new file mode 100644 index 0000000..54c337d --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/hr.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Status" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Postavi na nacrt" + +#~ msgid "Security" +#~ msgstr "Sigurnost" + +#~ msgid "Draft" +#~ msgstr "Skica" diff --git a/Addons/custom/bi_sql_editor/i18n/hr_HR.po b/Addons/custom/bi_sql_editor/i18n/hr_HR.po new file mode 100644 index 0000000..0a86c74 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/hr_HR.po @@ -0,0 +1,801 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Oblast/Županija" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" diff --git a/Addons/custom/bi_sql_editor/i18n/hu.po b/Addons/custom/bi_sql_editor/i18n/hu.po new file mode 100644 index 0000000..885fcc4 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/hu.po @@ -0,0 +1,808 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Állapot" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Beállítás tervezetnek" + +#~ msgid "Security" +#~ msgstr "Biztonság" + +#~ msgid "Draft" +#~ msgstr "Tervezet" diff --git a/Addons/custom/bi_sql_editor/i18n/id.po b/Addons/custom/bi_sql_editor/i18n/id.po new file mode 100644 index 0000000..3eaf6b3 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/id.po @@ -0,0 +1,802 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Keamanan" diff --git a/Addons/custom/bi_sql_editor/i18n/it.po b/Addons/custom/bi_sql_editor/i18n/it.po new file mode 100644 index 0000000..4333114 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/it.po @@ -0,0 +1,810 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 2017 +# Paolo Valier , 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: 2023-06-20 11:10+0000\n" +"Last-Translator: mymage \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" +"X-Generator: Weblate 4.17\n" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. 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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Stato" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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 "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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Imposta a bozza" + +#~ msgid "Security" +#~ msgstr "Sicurezza" + +#~ msgid "Draft" +#~ msgstr "Bozza" diff --git a/Addons/custom/bi_sql_editor/i18n/ja.po b/Addons/custom/bi_sql_editor/i18n/ja.po new file mode 100644 index 0000000..eb24a47 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/ja.po @@ -0,0 +1,833 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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: 2024-01-09 06:35+0000\n" +"Last-Translator: \"Ivy Liu (QRTL)\" \n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.17\n" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "%(model_name)s アクセス %(full_name)s" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "%s (コピー)" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "アクセス %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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +msgstr "平均" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "BI SQL View" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "Bi SQL View フィールド" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "デフォルトでは、Odooはグループ化する際に値を合計します。挙動を変更したい場合" +"は、別のグループ演算子を選択してください" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "検索ビューに 「グループ化」 " +"オプションを作成したい場合はこのボックスをチェックしてください" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "計算されたアクションコンテキスト" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "計算されたコンテキスト" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "全てのビューでこのフィールドに挿入されるコンテキスト値。注意:コンテキストは" +"一重引用符で囲んでください。" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "SQLエレメント作成" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "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 "作成者" + +#. 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 "マテリアライズビューを更新するCronタスク" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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 "" +"ここでデータへのアクセス制限を定義します。.\n" +" フィールド名の先頭に'x_'をつけてください。 グローバルな「ir." +"rule」が作成されます。典型的なマルチカンパニールールは以下の通り \n" +" ['|', ('x_company_id','child_of', [user.company_id." +"id]),('x_company_id','=',False)]." + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "SQLエレメント削除" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "UI削除" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "フィールド" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "フォロワー" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "フォロワー(パートナー)" + +#. 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 "" +"'Many2one' Odooフィールドについて、\n" +"フィールドのモデル。" + +#. 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 "" +"'Selection' Odoo フィールドについて、\n" +"(key, label) ペアのリストを定義する Python " +"式として指定されたオプションのリスト。例:[('blue','Blue'), " +"('yellow','Yellow')]" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "作成されるトランジェントモデルの完全修飾名。" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "SQLビューのフルネーム" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "チェックが入っている場合、新着メッセージに注意が必要です。" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "チェックが入っている場合、一部のメッセージに送信エラーがあります。" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "ビューの状態が「Model Valid」または「UI " +"Valid」の場合フィールドを削除できません。" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "インビジブル" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "フォロワーです" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "マテリアライズドビューを削除し、以前のカラムとの関連付けを全て削除します" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "メインアタッチメント" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "マテリアライズド・テキスト" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "メッセージ送信エラー" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "メッセージ" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "最小値" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" +"カラムが見つかりませんでした。\n" +"カラム名は 'x_' で接頭辞を付ける必要があります。" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "ノート" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "アクション数" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "エラー数" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "対応必要なメッセージ数" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "送信のエラーメッセージ数" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "Odooアクション" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "Odooスケジュールタスク" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "Odooグラフビュー" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "Odooメニュー" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "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 "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ルール" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "Odooサーチビュー" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "Odooツリービュー" + +#. module: bi_sql_editor +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "オプション(非表示)" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "オプション(表示)" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "以下のフィールドに関連モデルを設定してください %s" + +#. 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" +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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "マテリアライズドビューをリフレッシュ %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 "列" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" +"%(materialized_text)s ビュー %(view_name)s を作成中に SQL " +"エラーが発生しました : \n" +"%(error)s" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "SQLフィールド" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "SQLレポート" + +#. 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 "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 "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "ドラフトに設定" + +#~ msgid "Security" +#~ msgstr "セキュリティ" + +#~ msgid "Draft" +#~ msgstr "ドラフト" diff --git a/Addons/custom/bi_sql_editor/i18n/ko.po b/Addons/custom/bi_sql_editor/i18n/ko.po new file mode 100644 index 0000000..80d6eaa --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/ko.po @@ -0,0 +1,802 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "보안" diff --git a/Addons/custom/bi_sql_editor/i18n/lt.po b/Addons/custom/bi_sql_editor/i18n/lt.po new file mode 100644 index 0000000..43e727b --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/lt.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Nustatyti kaip juodraštį" + +#~ msgid "Security" +#~ msgstr "Saugumas" + +#~ msgid "Draft" +#~ msgstr "Juodraštis" diff --git a/Addons/custom/bi_sql_editor/i18n/lt_LT.po b/Addons/custom/bi_sql_editor/i18n/lt_LT.po new file mode 100644 index 0000000..606a2c5 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/lt_LT.po @@ -0,0 +1,801 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" diff --git a/Addons/custom/bi_sql_editor/i18n/lv.po b/Addons/custom/bi_sql_editor/i18n/lv.po new file mode 100644 index 0000000..1dd9ab2 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/lv.po @@ -0,0 +1,803 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Drošība" diff --git a/Addons/custom/bi_sql_editor/i18n/mk.po b/Addons/custom/bi_sql_editor/i18n/mk.po new file mode 100644 index 0000000..c1527d5 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/mk.po @@ -0,0 +1,808 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Подеси на нацрт" + +#~ msgid "Security" +#~ msgstr "Безбедност" + +#~ msgid "Draft" +#~ msgstr "Нацрт" diff --git a/Addons/custom/bi_sql_editor/i18n/mn.po b/Addons/custom/bi_sql_editor/i18n/mn.po new file mode 100644 index 0000000..152cf54 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/mn.po @@ -0,0 +1,808 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Ноороглох" + +#~ msgid "Security" +#~ msgstr "Хамгаалалт" + +#~ msgid "Draft" +#~ msgstr "Ноорог" diff --git a/Addons/custom/bi_sql_editor/i18n/nb.po b/Addons/custom/bi_sql_editor/i18n/nb.po new file mode 100644 index 0000000..e94c630 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/nb.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Status" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Sett som utkast" + +#~ msgid "Security" +#~ msgstr "Sikkerhet" + +#~ msgid "Draft" +#~ msgstr "Utkast" diff --git a/Addons/custom/bi_sql_editor/i18n/nb_NO.po b/Addons/custom/bi_sql_editor/i18n/nb_NO.po new file mode 100644 index 0000000..e393291 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/nb_NO.po @@ -0,0 +1,803 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Stat" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Draft" +#~ msgstr "Drøfting" diff --git a/Addons/custom/bi_sql_editor/i18n/nl.po b/Addons/custom/bi_sql_editor/i18n/nl.po new file mode 100644 index 0000000..9cc4615 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/nl.po @@ -0,0 +1,805 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Staat/Provincie" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Zet op concept" + +#~ msgid "Draft" +#~ msgstr "Concept" diff --git a/Addons/custom/bi_sql_editor/i18n/nl_BE.po b/Addons/custom/bi_sql_editor/i18n/nl_BE.po new file mode 100644 index 0000000..c4ef1b5 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/nl_BE.po @@ -0,0 +1,806 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Terugzetten naar Concept" + +#~ msgid "Draft" +#~ msgstr "Concept" diff --git a/Addons/custom/bi_sql_editor/i18n/nl_NL.po b/Addons/custom/bi_sql_editor/i18n/nl_NL.po new file mode 100644 index 0000000..03a0c02 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/nl_NL.po @@ -0,0 +1,801 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 2017 +# Peter Hageman , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" diff --git a/Addons/custom/bi_sql_editor/i18n/pl.po b/Addons/custom/bi_sql_editor/i18n/pl.po new file mode 100644 index 0000000..b8e8cf0 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/pl.po @@ -0,0 +1,807 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Stan" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Uprawnienia" + +#~ msgid "Draft" +#~ msgstr "Projekt" diff --git a/Addons/custom/bi_sql_editor/i18n/pt.po b/Addons/custom/bi_sql_editor/i18n/pt.po new file mode 100644 index 0000000..63e691f --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/pt.po @@ -0,0 +1,805 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Definir como rascunho" + +#~ msgid "Draft" +#~ msgstr "Rascunho" diff --git a/Addons/custom/bi_sql_editor/i18n/pt_BR.po b/Addons/custom/bi_sql_editor/i18n/pt_BR.po new file mode 100644 index 0000000..7cff038 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/pt_BR.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ú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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Definir como Provisório" + +#~ msgid "Security" +#~ msgstr "Segurança" + +#~ msgid "Draft" +#~ msgstr "Rascunho" diff --git a/Addons/custom/bi_sql_editor/i18n/pt_PT.po b/Addons/custom/bi_sql_editor/i18n/pt_PT.po new file mode 100644 index 0000000..ee7e582 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/pt_PT.po @@ -0,0 +1,806 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ú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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Definir como rascunho" + +#~ msgid "Draft" +#~ msgstr "Rascunho" diff --git a/Addons/custom/bi_sql_editor/i18n/ro.po b/Addons/custom/bi_sql_editor/i18n/ro.po new file mode 100644 index 0000000..5760a97 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/ro.po @@ -0,0 +1,806 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Județ" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Seteaza ca Ciorna" + +#~ msgid "Draft" +#~ msgstr "Schiță" diff --git a/Addons/custom/bi_sql_editor/i18n/ru.po b/Addons/custom/bi_sql_editor/i18n/ru.po new file mode 100644 index 0000000..829afe9 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/ru.po @@ -0,0 +1,807 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Установить в \"Черновик\"" + +#~ msgid "Draft" +#~ msgstr "Черновик" diff --git a/Addons/custom/bi_sql_editor/i18n/sk.po b/Addons/custom/bi_sql_editor/i18n/sk.po new file mode 100644 index 0000000..4b8d061 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/sk.po @@ -0,0 +1,802 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Bezpečnosť" diff --git a/Addons/custom/bi_sql_editor/i18n/sl.po b/Addons/custom/bi_sql_editor/i18n/sl.po new file mode 100644 index 0000000..1a3ad8b --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/sl.po @@ -0,0 +1,880 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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: 2023-04-11 13:24+0000\n" +"Last-Translator: Matjaz Mozetic \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" +"X-Generator: Weblate 4.14.1\n" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "%s (kopija)" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "Dostop %s" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +msgstr "" + +#. 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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Prikazani 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_context +msgid "Field Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "Opis polja" + +#. 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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +msgstr "" + +#. 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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +#, fuzzy +msgid "Materialized Text" +msgstr "Materializirano besedilo" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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 "Izmera" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" +"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__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 "Osveži materializirani prikaz" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "Osveži materializirani prikaz %s" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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: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: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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Stanje" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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 "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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, fuzzy, python-format +msgid "You can not create indexes on non materialized views" +msgstr "Cron opravilo, ki bo osvežilo materializirani prikaz" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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" + +#~ msgid "Set to Draft" +#~ msgstr "Nastavi kot osnutek" + +#, python-format +#~ msgid "%s Access %s" +#~ msgstr "%s Dostop %s" + +#~ msgid "Create SQL View, Indexes and Models" +#~ msgstr "Ustvari SQL prikaz, indekse in modele" + +#, fuzzy +#~ msgid "Preview SQL Expression" +#~ msgstr "Overjanje SQL izraza" + +#, python-format +#~ msgid "" +#~ "SQL Error while creating %s VIEW %s :\n" +#~ " %s" +#~ msgstr "" +#~ "SQL napaka pri nastanku %s VIEW %s :\n" +#~ " %s" + +#~ msgid "SQL Query" +#~ msgstr "SQL poizvedba" + +#~ msgid "Security" +#~ msgstr "Varnost" + +#~ msgid "Validate SQL Expression" +#~ msgstr "Overjanje SQL izraza" + +#, python-format +#~ msgid "You can only process this action on SQL Valid items" +#~ msgstr "To dejanje lahko obdelate le na SQL veljavnih postavkah" + +#~ 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" diff --git a/Addons/custom/bi_sql_editor/i18n/sr.po b/Addons/custom/bi_sql_editor/i18n/sr.po new file mode 100644 index 0000000..b2b24d0 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/sr.po @@ -0,0 +1,803 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Bezbednost" diff --git a/Addons/custom/bi_sql_editor/i18n/sr@latin.po b/Addons/custom/bi_sql_editor/i18n/sr@latin.po new file mode 100644 index 0000000..f2d94c4 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/sr@latin.po @@ -0,0 +1,807 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Bezbednost" + +#~ msgid "Draft" +#~ msgstr "Nacrt" diff --git a/Addons/custom/bi_sql_editor/i18n/sv.po b/Addons/custom/bi_sql_editor/i18n/sv.po new file mode 100644 index 0000000..a1804fc --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/sv.po @@ -0,0 +1,808 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Status" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Sätt till preliminär" + +#~ msgid "Security" +#~ msgstr "Säkerhet" + +#~ msgid "Draft" +#~ msgstr "Preliminär" diff --git a/Addons/custom/bi_sql_editor/i18n/th.po b/Addons/custom/bi_sql_editor/i18n/th.po new file mode 100644 index 0000000..bc60405 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/th.po @@ -0,0 +1,808 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "กำหนดให้เป็นแบบร่าง" + +#~ msgid "Security" +#~ msgstr "ความปลอดภัย" + +#~ msgid "Draft" +#~ msgstr "ฉบับร่าง" diff --git a/Addons/custom/bi_sql_editor/i18n/tr.po b/Addons/custom/bi_sql_editor/i18n/tr.po new file mode 100644 index 0000000..142e4c2 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/tr.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 2017 +# Ozge Altinisik , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Durum" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "Taslak Olarak Ayarlayın" + +#~ msgid "Security" +#~ msgstr "Güvenlik" + +#~ msgid "Draft" +#~ msgstr "Taslak" diff --git a/Addons/custom/bi_sql_editor/i18n/tr_TR.po b/Addons/custom/bi_sql_editor/i18n/tr_TR.po new file mode 100644 index 0000000..fafd546 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/tr_TR.po @@ -0,0 +1,807 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 2017 +# Ozge Altinisik , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "Hal" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Güvenlik" + +#~ msgid "Draft" +#~ msgstr "Taslak" diff --git a/Addons/custom/bi_sql_editor/i18n/uk.po b/Addons/custom/bi_sql_editor/i18n/uk.po new file mode 100644 index 0000000..09abc65 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/uk.po @@ -0,0 +1,803 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Безпека" diff --git a/Addons/custom/bi_sql_editor/i18n/vi.po b/Addons/custom/bi_sql_editor/i18n/vi.po new file mode 100644 index 0000000..031fdd2 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/vi.po @@ -0,0 +1,805 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Security" +#~ msgstr "Bảo mật" + +#~ msgid "Draft" +#~ msgstr "Dự thảo" diff --git a/Addons/custom/bi_sql_editor/i18n/vi_VN.po b/Addons/custom/bi_sql_editor/i18n/vi_VN.po new file mode 100644 index 0000000..493d513 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/vi_VN.po @@ -0,0 +1,800 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" diff --git a/Addons/custom/bi_sql_editor/i18n/zh_CN.po b/Addons/custom/bi_sql_editor/i18n/zh_CN.po new file mode 100644 index 0000000..3e13d94 --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/zh_CN.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "状态" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "设为草稿" + +#~ msgid "Security" +#~ msgstr "安全" + +#~ msgid "Draft" +#~ msgstr "草稿" diff --git a/Addons/custom/bi_sql_editor/i18n/zh_TW.po b/Addons/custom/bi_sql_editor/i18n/zh_TW.po new file mode 100644 index 0000000..b803fed --- /dev/null +++ b/Addons/custom/bi_sql_editor/i18n/zh_TW.po @@ -0,0 +1,809 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +# Translators: +# OCA Transbot , 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 , 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%(model_name)s Access %(full_name)s" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "Action Needed" +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 +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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_attachment_count +msgid "Attachment Count" +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.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__avg +msgid "Average" +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__group_operator +msgid "" +"By default, Odoo will sum the values when grouping. If you wish to alter the " +"behaviour, choose an alternate Group Operator" +msgstr "" + +#. module: bi_sql_editor +#: 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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__computed_action_context +msgid "Computed Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Computed Context" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_context +msgid "" +"Context value that will be inserted for this field in all the views. " +"Important note : please write a context with single quote." +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL Elements" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Custom Context" +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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete SQL Elements" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Delete UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +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_context +msgid "Field Context" +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,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. 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_field__group_operator +msgid "Group Operator" +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,field_description:bi_sql_editor.field_bi_sql_view__has_message +msgid "Has Message" +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,help:bi_sql_editor.field_bi_sql_view__message_needaction +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "" +"Impossible to delete fields if the view is in the state 'Model Valid' or 'UI " +"Valid'." +msgstr "" + +#. 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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__invisible +msgid "Invisible" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_is_follower +msgid "Is Follower" +msgstr "" + +#. 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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"It will delete the materialized view, and all the previous mapping realized " +"with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: 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__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__max +msgid "Maximum" +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__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_ids +msgid "Messages" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__min +msgid "Minimum" +msgstr "" + +#. 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__note +msgid "Note" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_needaction_counter +msgid "Number of messages requiring action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. 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 +#. odoo-python +#: 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:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_hide +msgid "Optional (hidden)" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__optional_show +msgid "Optional (shown)" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Please set related models on the following fields %s" +msgstr "" + +#. 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" +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 +#. odoo-python +#: 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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %(materialized_text)s VIEW %(view_name)s :\n" +" %(error)s" +msgstr "" + +#. 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: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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +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 +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__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.selection,name:bi_sql_editor.selection__bi_sql_view_field__group_operator__sum +msgid "Sum" +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__has_group_changed +msgid "" +"Technical fields, used in modules that depends on this one to know if groups " +"has changed, and that according access should be updated." +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: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 +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#. odoo-python +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"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 "" + +#~ msgid "Set to Draft" +#~ msgstr "設置為草稿" + +#~ msgid "Security" +#~ msgstr "安全" + +#~ msgid "Draft" +#~ msgstr "草稿" diff --git a/Addons/custom/bi_sql_editor/models/__init__.py b/Addons/custom/bi_sql_editor/models/__init__.py new file mode 100644 index 0000000..7393f40 --- /dev/null +++ b/Addons/custom/bi_sql_editor/models/__init__.py @@ -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 diff --git a/Addons/custom/bi_sql_editor/models/bi_sql_view.py b/Addons/custom/bi_sql_editor/models/bi_sql_view.py new file mode 100644 index 0000000..f036496 --- /dev/null +++ b/Addons/custom/bi_sql_editor/models/bi_sql_view.py @@ -0,0 +1,753 @@ +# 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, timedelta + +from psycopg2 import ProgrammingError + +from odoo import SUPERUSER_ID, _, api, fields, models +from odoo.exceptions import UserError, ValidationError +from odoo.tools import sql, table_columns +from odoo.tools.safe_eval import safe_eval + +_logger = logging.getLogger(__name__) + + +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( + 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( + compute="_compute_view_name", + readonly=True, + store=True, + help="Full name of the SQL view", + ) + + model_name = fields.Char( + compute="_compute_model_name", + readonly=True, + store=True, + help="Full Qualified Name of the transient model that will" " be created.", + ) + + 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( + 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") + + action_context = fields.Text( + default="{}", + readonly=True, + help="Define here a context that will be used" + " by default, when creating the action.", + states={ + "draft": [("readonly", False)], + "sql_valid": [("readonly", False)], + "model_valid": [("readonly", False)], + }, + ) + + bi_sql_view_field_ids = fields.One2many( + 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", + ondelete="cascade", + ) + + 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) + + # If no measure are defined, we display by default the count + # of the element, to avoid an empty view + if not action["pivot_measures"]: + action["pivot_measures"] = ["__count__"] + + 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, + ) + + # Overload Section + def write(self, vals): + res = super().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." + ) + ) + return super().unlink() + + def copy(self, default=None): + self.ensure_one() + default = dict(default or {}) + if "name" not in default: + default["name"] = _("%s (Copy)") % self.name + if "technical_name" not in default: + default["technical_name"] = f"{self.technical_name}_copy" + return super().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"): + # Check if many2one fields are correctly + bad_fields = sql_view.bi_sql_view_field_ids.filtered( + lambda x: x.ttype == "many2one" and not x.many2one_model_id.id + ) + if bad_fields: + raise ValidationError( + _("Please set related models on the following fields %s") + % ",".join(bad_fields.mapped("name")) + ) + # 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_reset_to_model_valid(self): + views = self.filtered(lambda x: x.state == "ui_valid") + views.mapped("tree_view_id").unlink() + views.mapped("graph_view_id").unlink() + views.mapped("pivot_view_id").unlink() + views.mapped("search_view_id").unlink() + views.mapped("action_id").unlink() + views.mapped("menu_id").unlink() + return views.write({"state": "model_valid"}) + + def button_reset_to_sql_valid(self): + self.button_reset_to_model_valid() + views = self.filtered(lambda x: x.state == "model_valid") + for sql_view in views: + # 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() + return views.write({"state": "sql_valid"}) + + def button_set_draft(self): + self.button_reset_to_model_valid() + self.button_reset_to_sql_valid() + return super().button_set_draft() + + 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": _("%(model_name)s Access %(full_name)s") + % {"model_name": self.model_name, "full_name": group.full_name}, + "model_id": self.model_id.id, + "group_id": group.id, + "perm_read": True, + "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": now + timedelta(days=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": """""" + """{}""" + """""".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": """""" + """{}""" + """""".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": """""" + """{}""" + """""".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": """""" + """{}""" + """{}""" + """""".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 %(materialized_text)s" + " VIEW %(view_name)s :\n %(error)s" + ) + % { + "materialized_text": sql_view.materialized_text, + "view_name": sql_view.view_name, + "error": str(e), + } + ) from 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 %(index_name)s ON %(view_name)s (%(field_name)s);" + % { + "index_name": sql_field.index_name, + "view_name": sql_view.view_name, + "field_name": sql_field.name, + } + ) + + 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()._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 model._name.startswith( + self._model_prefix + ) and "group_operator" in table_columns(self.env.cr, "bi_sql_view_field"): + # Use SQL instead of ORM, as ORM might not be fully initialised - + # we have no control over the order that fields are defined! + # We are not concerned about user security rules. + 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]))) diff --git a/Addons/custom/bi_sql_editor/models/bi_sql_view_field.py b/Addons/custom/bi_sql_editor/models/bi_sql_view_field.py new file mode 100644 index 0000000..abef37f --- /dev/null +++ b/Addons/custom/bi_sql_editor/models/bi_sql_view_field.py @@ -0,0 +1,301 @@ +# 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"), + ("invisible", "Invisible"), + ("optional_hide", "Optional (hidden)"), + ("optional_show", "Optional (shown)"), + ("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(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" + ) + + state = fields.Selection(related="bi_sql_view_id.state", store=True) + + is_index = fields.Boolean( + help="Check this box if you want to create" + " an index on that field. This is recommended for searchable and" + " groupable fields, to reduce duration", + states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]}, + ) + + is_group_by = fields.Boolean( + string="Is Group by", + help="Check this box if you want to create" + " a 'group by' option in the search view", + states={"ui_valid": [("readonly", True)]}, + ) + + index_name = fields.Char(compute="_compute_index_name") + + graph_type = fields.Selection( + selection=_GRAPH_TYPE_SELECTION, + states={"ui_valid": [("readonly", True)]}, + ) + + tree_visibility = fields.Selection( + selection=_TREE_VISIBILITY_SELECTION, + default="available", + required=True, + states={"ui_valid": [("readonly", True)]}, + ) + + field_description = fields.Char( + help="This will be used as the name of the Odoo field, displayed for users", + required=True, + states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]}, + ) + + ttype = fields.Selection( + 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", + states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]}, + ) + + 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')]", + states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]}, + ) + + many2one_model_id = fields.Many2one( + comodel_name="ir.model", + string="Model", + help="For 'Many2one' Odoo field.\n" " Comodel of the field.", + states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]}, + ) + + group_operator = fields.Selection( + selection=_GROUP_OPERATOR_SELECTION, + help="By default, Odoo will sum the values when grouping. If you wish " + "to alter the behaviour, choose an alternate Group Operator", + states={"model_valid": [("readonly", True)], "ui_valid": [("readonly", True)]}, + ) + + field_context = fields.Char( + default="{}", + help="Context value that will be inserted for this field in all the views." + " Important note : please write a context with single quote.", + states={"ui_valid": [("readonly", True)]}, + ) + + # Constrains Section + @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_create_multi + def create(self, vals_list): + for vals in vals_list: + 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().create(vals_list) + + def unlink(self): + if self.filtered(lambda x: x.state in ("model_valid", "ui_valid")): + raise UserError( + _( + "Impossible to delete fields if the view" + " is in the state 'Model Valid' or 'UI Valid'." + ) + ) + return super().unlink() + + # 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() + if self.tree_visibility == "unavailable": + return "" + visibility_text = "" + if self.tree_visibility == "invisible": + visibility_text = 'invisible="1"' + elif self.tree_visibility == "optional_hide": + visibility_text = 'optional="hide"' + elif self.tree_visibility == "optional_show": + visibility_text = 'optional="show"' + + return ( + f"""\n""" + ) + + def _prepare_graph_field(self): + self.ensure_one() + if not self.graph_type: + return "" + return ( + f"""\n""" + ) + + def _prepare_pivot_field(self): + self.ensure_one() + graph_type_text = self.graph_type and f'type="{self.graph_type}"' or "" + return ( + f"""\n""" + ) + + def _prepare_search_field(self): + self.ensure_one() + return """\n""".format( + self.name, + self.field_context, + ) + + def _prepare_search_filter_field(self): + self.ensure_one() + if not self.is_group_by: + return "" + return ( + f"""\n""" + ) diff --git a/Addons/custom/bi_sql_editor/models/ir_model.py b/Addons/custom/bi_sql_editor/models/ir_model.py new file mode 100644 index 0000000..ff37efa --- /dev/null +++ b/Addons/custom/bi_sql_editor/models/ir_model.py @@ -0,0 +1,10 @@ +from odoo import models + + +class IrModelFields(models.Model): + _inherit = "ir.model.fields" + + def _add_manual_fields(self, model): + res = super()._add_manual_fields(model) + self.env["bi.sql.view"].check_manual_fields(model) + return res diff --git a/Addons/custom/bi_sql_editor/readme/CONFIGURE.rst b/Addons/custom/bi_sql_editor/readme/CONFIGURE.rst new file mode 100644 index 0000000..f2bc569 --- /dev/null +++ b/Addons/custom/bi_sql_editor/readme/CONFIGURE.rst @@ -0,0 +1,42 @@ +* Go to Dashboard / Configuration / SQL Views + +* tip your SQL request + + .. figure:: ../static/description/01_sql_request.png + :width: 800 px + +* Select the group(s) that could have access to the view + + .. figure:: ../static/description/02_security_access.png + :width: 800 px + +Optionnaly, you can add a domain. + +A tipical domain in a multi company context is to write +``['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]`` +to make reporting depending on the current companies of the user. + +* Click on the button 'Validate SQL Expression' + +* Once the sql request checked, the module analyses the column of the view, + and propose field mapping. For each field, you can decide to create an index + and set if it will be displayed on the pivot graph as a column, a row or a + measure. + + .. figure:: ../static/description/03_field_mapping.png + :width: 800 px + +* Click on the button 'Create SQL elements'. (this step could + take a while, if view is materialized) + +* If it's a MATERIALIZED view: + + * a cron task is created to refresh + the view. You can so define the frequency of the refresh. + * the size of view (and the indexes is displayed) + + .. figure:: ../static/description/04_materialized_view_setting.png + :width: 800 px + +* Finally, click on 'Create UI', to create new menu, action, graph view and + search view. diff --git a/Addons/custom/bi_sql_editor/readme/CONTRIBUTORS.rst b/Addons/custom/bi_sql_editor/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..c7c1b66 --- /dev/null +++ b/Addons/custom/bi_sql_editor/readme/CONTRIBUTORS.rst @@ -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 diff --git a/Addons/custom/bi_sql_editor/readme/DESCRIPTION.rst b/Addons/custom/bi_sql_editor/readme/DESCRIPTION.rst new file mode 100644 index 0000000..7056ca5 --- /dev/null +++ b/Addons/custom/bi_sql_editor/readme/DESCRIPTION.rst @@ -0,0 +1,41 @@ +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 diff --git a/Addons/custom/bi_sql_editor/readme/USAGE.rst b/Addons/custom/bi_sql_editor/readme/USAGE.rst new file mode 100644 index 0000000..53369b8 --- /dev/null +++ b/Addons/custom/bi_sql_editor/readme/USAGE.rst @@ -0,0 +1,10 @@ +To use this module, you need to: + +#. Go to 'Dashboards > SQL Reports' + +#. Select the desired report + + .. figure:: ../static/description/05_reporting_pivot.png + :width: 800 px + +* You can switch to 'Graph' or 'tree' views as any report. diff --git a/Addons/custom/bi_sql_editor/static/description/01_sql_request.png b/Addons/custom/bi_sql_editor/static/description/01_sql_request.png new file mode 100644 index 0000000..bd631c6 Binary files /dev/null and b/Addons/custom/bi_sql_editor/static/description/01_sql_request.png differ diff --git a/Addons/custom/bi_sql_editor/static/description/02_security_access.png b/Addons/custom/bi_sql_editor/static/description/02_security_access.png new file mode 100644 index 0000000..975e677 Binary files /dev/null and b/Addons/custom/bi_sql_editor/static/description/02_security_access.png differ diff --git a/Addons/custom/bi_sql_editor/static/description/03_field_mapping.png b/Addons/custom/bi_sql_editor/static/description/03_field_mapping.png new file mode 100644 index 0000000..74c2e8a Binary files /dev/null and b/Addons/custom/bi_sql_editor/static/description/03_field_mapping.png differ diff --git a/Addons/custom/bi_sql_editor/static/description/04_materialized_view_setting.png b/Addons/custom/bi_sql_editor/static/description/04_materialized_view_setting.png new file mode 100644 index 0000000..d751a0a Binary files /dev/null and b/Addons/custom/bi_sql_editor/static/description/04_materialized_view_setting.png differ diff --git a/Addons/custom/bi_sql_editor/static/description/05_reporting_pivot.png b/Addons/custom/bi_sql_editor/static/description/05_reporting_pivot.png new file mode 100644 index 0000000..5b13158 Binary files /dev/null and b/Addons/custom/bi_sql_editor/static/description/05_reporting_pivot.png differ diff --git a/Addons/custom/bi_sql_editor/static/description/icon.png b/Addons/custom/bi_sql_editor/static/description/icon.png new file mode 100644 index 0000000..c72ba5c Binary files /dev/null and b/Addons/custom/bi_sql_editor/static/description/icon.png differ diff --git a/Addons/custom/bi_sql_editor/static/description/index.html b/Addons/custom/bi_sql_editor/static/description/index.html new file mode 100644 index 0000000..68ae6d5 --- /dev/null +++ b/Addons/custom/bi_sql_editor/static/description/index.html @@ -0,0 +1,541 @@ + + + + + +BI SQL Editor + + + +
+

BI SQL Editor

+ + +

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

+

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

+ +
+

Configuration

+
    +
  • Go to Dashboard / Configuration / SQL Views

    +
  • +
  • tip your SQL request

    +
    +https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/01_sql_request.png +
    +
  • +
  • Select the group(s) that could have access to the view

    +
    +https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/02_security_access.png +
    +
  • +
+

Optionnaly, you can add a domain.

+

A tipical domain in a multi company context is to write +['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] +to make reporting depending on the current companies of the user.

+
    +
  • Click on the button ‘Validate SQL Expression’

    +
  • +
  • Once the sql request checked, the module analyses the column of the view, +and propose field mapping. For each field, you can decide to create an index +and set if it will be displayed on the pivot graph as a column, a row or a +measure.

    +
    +https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/03_field_mapping.png +
    +
  • +
  • Click on the button ‘Create SQL elements’. (this step could +take a while, if view is materialized)

    +
  • +
  • If it’s a MATERIALIZED view:

    +
    +
      +
    • a cron task is created to refresh +the view. You can so define the frequency of the refresh.
    • +
    • the size of view (and the indexes is displayed)
    • +
    +
    +
    +https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/04_materialized_view_setting.png +
    +
  • +
  • Finally, click on ‘Create UI’, to create new menu, action, graph view and +search view.

    +
  • +
+
+
+

Usage

+

To use this module, you need to:

+
    +
  1. Go to ‘Dashboards > SQL Reports’
  2. +
  3. Select the desired report
  4. +
+
+
+https://raw.githubusercontent.com/OCA/reporting-engine/16.0/bi_sql_editor/static/description/05_reporting_pivot.png +
+
+
    +
  • You can switch to ‘Graph’ or ‘tree’ views as any report.
  • +
+
+
+

Bug Tracker

+

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

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • GRAP
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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

+

Current maintainer:

+

legalsylvain

+

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

+

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

+
+
+
+
+ + diff --git a/Addons/custom/bi_sql_editor/tests/__init__.py b/Addons/custom/bi_sql_editor/tests/__init__.py new file mode 100644 index 0000000..d3202a4 --- /dev/null +++ b/Addons/custom/bi_sql_editor/tests/__init__.py @@ -0,0 +1,2 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import test_bi_sql_view diff --git a/Addons/custom/bi_sql_editor/tests/test_bi_sql_view.py b/Addons/custom/bi_sql_editor/tests/test_bi_sql_view.py new file mode 100644 index 0000000..68b9218 --- /dev/null +++ b/Addons/custom/bi_sql_editor/tests/test_bi_sql_view.py @@ -0,0 +1,116 @@ +# Copyright 2017 Onestein () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo.exceptions import AccessError, UserError, ValidationError +from odoo.tests import tagged +from odoo.tests.common import SingleTransactionCase + + +@tagged("-at_install", "post_install") +class TestBiSqlViewEditor(SingleTransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + + cls.bi_sql_view = cls.env["bi.sql.view"] + cls.group_bi_manager = cls.env.ref( + "sql_request_abstract.group_sql_request_manager" + ) + cls.group_bi_no_access = cls.env.ref("base.group_user") + cls.demo_user = cls.env.ref("base.user_demo") + cls.view = cls.env.ref("bi_sql_editor.partner_sql_view") + + @classmethod + def _get_user(cls, access_level=False): + if access_level == "manager": + cls.demo_user.write({"groups_id": [(6, 0, cls.group_bi_manager.ids)]}) + else: + cls.demo_user.write({"groups_id": [(6, 0, cls.group_bi_no_access.ids)]}) + return cls.demo_user + + def test_process_view(self): + copy_view = self.view.copy(default={"technical_name": "test_process_view"}) + self.assertEqual(copy_view.state, "draft") + copy_view.button_validate_sql_expression() + self.assertEqual(copy_view.state, "sql_valid") + + field_lines = copy_view.bi_sql_view_field_ids + self.assertEqual(len(field_lines), 3) + field_lines.filtered(lambda x: x.name == "x_company_id").is_index = True + + copy_view.button_create_sql_view_and_model() + self.assertEqual(copy_view.state, "model_valid") + + field_lines.filtered(lambda x: x.name == "x_name").tree_visibility = "invisible" + field_lines.filtered( + lambda x: x.name == "x_street" + ).tree_visibility = "optional_hide" + field_lines.filtered( + lambda x: x.name == "x_company_id" + ).tree_visibility = "optional_show" + + field_lines.filtered(lambda x: x.name == "x_company_id").is_group_by = True + + field_lines.filtered(lambda x: x.name == "x_company_id").graph_type = "row" + + copy_view.button_create_ui() + self.assertEqual(copy_view.state, "ui_valid") + copy_view.button_update_model_access() + self.assertEqual(copy_view.has_group_changed, False) + # Check that cron works correctly + copy_view.cron_id.method_direct_trigger() + + def test_copy(self): + copy_view = self.view.copy(default={"technical_name": "test_copy"}) + self.assertEqual(copy_view.name, f"{self.view.name} (Copy)") + + def test_security(self): + with self.assertRaises(AccessError): + self.bi_sql_view.with_user(self._get_user()).search( + [("name", "=", self.view.name)] + ) + bi = self.bi_sql_view.with_user(self._get_user("manager")).search( + [("name", "=", self.view.name)] + ) + self.assertEqual( + len(bi), 1, "Bi Manager should have access to bi %s" % self.view.name + ) + + def test_unlink(self): + copy_view = self.view.copy( + default={ + "name": "Test Unlink", + "technical_name": "test_unlink", + } + ) + view_name = copy_view.name + copy_view.button_validate_sql_expression() + copy_view.button_create_sql_view_and_model() + copy_view.button_create_ui() + self.assertEqual(copy_view.state, "ui_valid") + with self.assertRaises(UserError): + copy_view.unlink() + copy_view.button_set_draft() + self.assertNotEqual( + copy_view.cron_id, + False, + "Set to draft materialized view should not unlink cron", + ) + copy_view.unlink() + res = self.bi_sql_view.search([("name", "=", view_name)]) + self.assertEqual(len(res), 0, "View not deleted") + + def test_many2one_not_found(self): + copy_view = self.view.copy( + default={"technical_name": "test_many2one_not_found"} + ) + + copy_view.query = "SELECT parent_id as x_weird_name_id FROM res_partner;" + copy_view.button_validate_sql_expression() + field_lines = copy_view.bi_sql_view_field_ids + self.assertEqual(len(field_lines), 1) + self.assertEqual(field_lines[0].ttype, "many2one") + self.assertEqual(field_lines[0].many2one_model_id.id, False) + + with self.assertRaises(ValidationError): + copy_view.button_create_sql_view_and_model() diff --git a/Addons/custom/bi_sql_editor/views/view_bi_sql_view.xml b/Addons/custom/bi_sql_editor/views/view_bi_sql_view.xml new file mode 100644 index 0000000..340addc --- /dev/null +++ b/Addons/custom/bi_sql_editor/views/view_bi_sql_view.xml @@ -0,0 +1,236 @@ + + + + + + bi.sql.view + + primary + + + + + + + + + + + + + bi.sql.view + + primary + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + +
+
+ + + +
+
+ + + + hazard_shopify.group_hazard_sales,hazard_shopify.group_hazard_finance + + + hazard_shopify.group_hazard_sales,hazard_shopify.group_hazard_finance + + + hazard_shopify.group_hazard_sales,hazard_shopify.group_hazard_finance + + + hazard_shopify.group_hazard_sales,hazard_shopify.group_hazard_finance + + + hazard_shopify.group_hazard_designer,hazard_shopify.group_hazard_sales,hazard_shopify.group_hazard_finance + + + hazard_shopify.group_hazard_designer,hazard_shopify.group_hazard_sales,hazard_shopify.group_hazard_finance + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+ + + + sale.quotation.tree.shopify.inherit + sale.order + + + + + + + + + + + + + sale.order.tree.shopify.inherit + sale.order + + + + + + + + + + + + + + stock.picking.tree.shopify.inherit + stock.picking + + + + + + + + + + + stock.picking.form.shopify.inherit + stock.picking + + + + ') + + _t(''); + } + else if (able_buttons.includes('tryagain')) { + buttons + = _t('') + + _t(''); + } + else if (able_buttons.includes('remove')) { + buttons += _t(''); + } + if (buttons.length > 0) { + buttons += _t(''); + } + return {'errors': errors, 'buttons': buttons, 'alerttype': alerttype}; + } + wrongMsgServer(data, able_buttons) { + /* Prepares the message to the server error */ + var typemsg = {'CheckXML': _t('Error checking XML data.'), 'CreatePartner': _t('Error creating partner.'), 'CreateMove': _t('Error creating move.')}; + var errors = '
' + data.error[0] + ' ' + data.error[1] + '.
' + typemsg[data.where] + '
'; + able_buttons.push('tryagain'); + return errors; + } + wrongMsgXml(file, able_buttons) { + /* Prepares the message to the xml errors */ + var self = this; + var errors = ''; + var map_error = { + unsigned: _t('
UUID not found in the XML.
'), + version: _t('
Unable to generate moves from an XML with version 3.2.You can create the move manually and then attach the xml.
'), + nothing: _t('
Info! XML data could not be read correctly.
'), + }; + $.each(file, function(ikey, val) { + if (ikey === 'wrong_company_r') { + errors += _t('
The XML Receptor RFC does not match with your Company RFC: ') + + _t('XML Receptor RFC: ') + val[0] + _t(', Your Company RFC: ') + val[1] + '
'; + able_buttons.push('remove'); + } + if (ikey === 'wrong_company_i') { + errors += _t('
The XML Issuer RFC does not match with your Company RFC: ') + + _t('XML Issuer RFC: ') + val[0] + _t(', Your Company RFC: ') + val[1] + '
'; + able_buttons.push('remove'); + } + if (ikey !== 'wrong_company_r' && ikey !== 'wrong_company_i' && ikey !== 'partner_not_found' && ikey !== 'xml64' && !able_buttons.includes('remove')) { + able_buttons.push('remove'); + } + if (ikey === 'partner_not_found') { + errors += _t('
The XML partner was not found: ') + val + '.
'; + able_buttons.push('partner'); + } + if (ikey === 'reference_multi') { + errors += _t('
The XML reference matches another move reference. Partner: ') + val[0] + _t(' Reference: ') + val[1] + '
'; + } + if (ikey === 'currency') { + errors += _t('
The XML Currency ') + val + _t(' was not found or is disabled.
'); + } + if (ikey === 'taxes') { + errors += _t('
Some taxes do not exist: ') + val.join(', ') + '.
'; + } + if (ikey === 'taxes_wn_accounts') { + errors += _t('
Some taxes do not have account assigned: ') + val.join(', ') + '.
'; + } + if (ikey === 'uuid_duplicated') { + errors += _t('
The XML UUID belong to other move. UUID: ') + val + '
'; + } + if (ikey === 'cancelled') { + errors += _t('
The XML state is CANCELLED in SATs system. ') + + _t('XML Folio: ') + val[1] + '
'; + able_buttons.push('tryagain'); + } + if (ikey === 'folio') { + errors += _t('
The XML Folio does not match with Partner document number: ') + + _t('XML Folio: ') + val[0] + _t(', Partner document number: ') + val[1] + '
'; + } + if (ikey === 'amount') { + errors += _t('
The XML amount total does not match with move total: ') + + _t('XML amount total: ') + val[0] + _t(', Move total: ') + val[1] + '
'; + able_buttons.push('tryagain'); + } + if (ikey === 'amount_tax') { + errors += _t('
The XML tax total amount does not match with Move tax total amount: ') + + _t('XML tax total: ') + val[0] + _t(', Move tax total: ') + val[1] + ' Ref: ' + val[2] + '
'; + able_buttons.push('tryagain'); + } + if (ikey === 'moves_related_not_found') { + errors += _t('
The TipoDeComprobante is "E" and The XML UUIDs are not related to any move. UUID: ') + val + '
'; + able_buttons.push('tryagain'); + } + if (ikey === 'no_node_related_uuids') { + errors += _t('
The TipoDeComprobante is "E" and The node CFDI related is not set Manually reconcile with the appropiate move. UUID: ') + val + '
'; + } + if (ikey === 'invoice_not_found') { + errors += _t('
The DocumentType is "E" and The XML UUID is not related to any invoice. UUID: ') + val +'
'; + } + if (Object.prototype.hasOwnProperty.call(map_error, ikey)) { + errors += map_error[ikey]; + } + }); + return errors; + } + sendErrorToServer(xml64, key, function_def) { + /* Sends again the base64 file string to the server to retry to create the move, or + sends the partner's data to be created in db if does not exist */ + var self = this; + var xml_file = {}; + xml_file[key] = xml64; + var options = self.getFields(); + var ctx = self.env.model.root.context; + ctx.account_id = options.account_id; + rpc.query({ + model: 'multi.file.attach.xmls.wizard', + method: function_def, + args: [xml_file], + context: ctx, + }).then(function(data) { + var wrongfiles = data.wrongfiles; + var attachments = data.attachments; + $.each(attachments, function(rkey, result) { + var alertobj = $('#alertscontent div[tag="' + rkey + '"].alert.dnd-alert'); + self.attachment_ids.push(result.attachment_id); + self.createdCorrectly(rkey); + self.removeWrongAlerts(alertobj, rkey, false); + }); + $.each(wrongfiles, function(rkey, result) { + var alert_parts = self.prepareWrongAlert(rkey, result); + var alertobj = $('#alertscontent div[tag="' + rkey + '"].alert.dnd-alert'); + var footer = alertobj.find('div:last-child span:not(.index-alert)'); + alertobj.removeClass('alert-danger alert-info').addClass('alert-' + alert_parts.alerttype); + alertobj.html(alert_parts.errors + '
' + alert_parts.buttons + '
'); + alertobj.find('div:last-child').append(footer); + }); + }); + } + removeWrongAlerts(alertobj, filekey, removefile) { + /* Removes the current error alert to continue with the others */ + var self = this; + alertobj.slideUp(500, function() { + delete self.alerts_in_queue.alertHTML[filekey]; + if (removefile) { + delete self.files[filekey]; + $('#filescontent div[title="' + filekey + '"]').animate({'opacity': '0'}, 500, function() { + $.when($(this).remove()).done(function() { + self.continueAlert(alertobj); + }); + }); + } + else { + self.continueAlert(alertobj); + } + }); + } + continueAlert(alertobj) { + /* After the error alert is removed, execute the next actions + (Next error alert, Restarts to attach more files, or Shows the final success alert) */ + var self = this; + $.when(alertobj.remove()).done(function() { + if (self.alerts_in_queue.alertHTML && Object.keys(self.alerts_in_queue.alertHTML).length > 0) { + self.nextWrongAlert(); + } + else if (Object.keys(self.files).length === 0) { + self.restart(); + } + else { + self.correctFinalRegistry(); + } + }); + } + nextWrongAlert() { + /* Shows the next error alert */ + var self = this; + var keys = Object.keys(self.alerts_in_queue.alertHTML); + var alert = self.alerts_in_queue.alertHTML[keys[0]].alert.hide(); + alert.find('div:last-child .index-alert').html(self.alerts_in_queue.total - (keys.length - 1)); + $('#alertscontent').html(alert); + alert.slideDown(500); + } + restart() { + /* Restarts all the variables and restores all the DOM element to attach more new files */ + this.files = {}; + this.attachment_ids = []; + this.uploading_files = false; + this.alerts_in_queue = {}; + $("#dragandrophandler").show(); + $("#filescontent").html(''); + $("#files").val(''); + $('#dndfooter button#save').attr('disabled', false); + $('#alertscontent div.alert').remove(); + $('#dndfooter button#show').hide(); + } + correctFinalRegistry() { + /* Shows the final success alert and the button to see the moves created */ + var self = this; + var alert = $('
' + _t('Your moves were created correctly') + '.
').hide(); + $('#alertscontent').html(alert); + alert.slideDown(500, function() { + $('#dndfooter').find("#show").show(); + }); + } +} + +attachXmlsWizard.template = "l10n_mx_sat_sync_itadmin_ee.multi_attach_xmls_template"; + +registry.category("fields").add("multi_attach_xmls_wizard_widget", attachXmlsWizard); \ No newline at end of file diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/static/src/js/data_manager.js b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/static/src/js/data_manager.js new file mode 100644 index 0000000..09d7e05 --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/static/src/js/data_manager.js @@ -0,0 +1,17 @@ +odoo.define('l10n_mx_sat_sync_itadmin_ee.DataManager', function (require) { +"use strict"; + + var DataManager = require('web.DataManager'); + var session = require('web.session'); + + DataManager.include({ + load_action: function (action_id, additional_context) { + if (additional_context==undefined){ + additional_context={}; + } + additional_context.allowed_company_ids = session.user_context.allowed_company_ids; + debugger; + return this._super(action_id, additional_context); + } + }); +}); \ No newline at end of file diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/static/src/js/list_button.js b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/static/src/js/list_button.js new file mode 100644 index 0000000..25bd9ec --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/static/src/js/list_button.js @@ -0,0 +1,83 @@ +/** @odoo-module **/ + +import { registry } from "@web/core/registry"; +import { useService } from "@web/core/utils/hooks"; +import { listView } from "@web/views/list/list_view"; +import { ListRenderer } from "@web/views/list/list_renderer"; +import { ListController } from "@web/views/list/list_controller"; +import { kanbanView } from "@web/views/kanban/kanban_view"; +import { KanbanRenderer } from "@web/views/kanban/kanban_renderer"; +import { KanbanController } from "@web/views/kanban/kanban_controller"; +import { KanbanDropdownMenuWrapper } from "@web/views/kanban/kanban_dropdown_menu_wrapper"; +import { KanbanRecord } from "@web/views/kanban/kanban_record"; +import { FileUploader } from "@web/views/fields/file_handler"; +import rpc from 'web.rpc'; + +const { Component, useState } = owl; +import core from 'web.core'; + +export class ListItadmin extends ListController { + + async _onClickImportarXML (event) { + debugger; + event.stopPropagation(); + var self = this; + return this.model.action.doAction({ + name: "Attach Files", + type: 'ir.actions.act_window', + view_mode: 'form', + views: [[false, 'form']], + target: 'new', + res_model: 'multi.file.attach.xmls.wizard' + }); + + } + + async _onClickDescargaXDia (event) { + event.stopPropagation(); + var self = this; + + return this.model.action.doAction({ + name: "Descarga x Dia", + type: 'ir.actions.act_window', + view_mode: 'form', + views: [[false, 'form']], + target: 'new', + res_model: 'descarga.x.dia.wizard' + }); + } + + async _onImportFIELSatInvoice (event) { + debugger; + event.stopPropagation(); + var self = this; + rpc.query({ + model: 'res.company', + method: 'import_current_company_invoice', +// args: [], + + }).then(function () { + return; + }); + } + + async _onClickSincronizarDocumentos (event) { + event.stopPropagation(); + var self = this; + rpc.query({ + model: 'ir.attachment', + method: 'update_status_from_ir_attachment_document', +// args: [], + }).then(function () { + return; + }); + } +} + + +export const itadmin = { + ...listView, + Controller: ListItadmin, + buttonTemplate: "l10n_mx_sat_sync_itadmin_ee.ListView.Buttons", +}; +registry.category("views").add("itadmin_tree", itadmin); diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/static/src/xml/attach_xmls_template.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/static/src/xml/attach_xmls_template.xml new file mode 100644 index 0000000..24f0187 --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/static/src/xml/attach_xmls_template.xml @@ -0,0 +1,30 @@ + + \ No newline at end of file diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/static/src/xml/list_buttons.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/static/src/xml/list_buttons.xml new file mode 100644 index 0000000..f0f4594 --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/static/src/xml/list_buttons.xml @@ -0,0 +1,12 @@ + + diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/account_move_view.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/account_move_view.xml new file mode 100644 index 0000000..312a29d --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/account_move_view.xml @@ -0,0 +1,17 @@ + + + + account.move.form.inh + account.move + + + + + + + {'invisible': ['|','|', ('edi_web_services_to_process', 'in', ['', False]), ('state', '=', 'draft'), ('hide_message','=',True)]} + + + + + diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/esignature_view.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/esignature_view.xml new file mode 100644 index 0000000..d2826c8 --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/esignature_view.xml @@ -0,0 +1,60 @@ + + + + + l10n.mx.esignature.certificate.action + l10n.mx.esignature.certificate + tree,form + +

Create the first esignature

+
+
+ + + l10n.mx.esignature.certificate.form + l10n.mx.esignature.certificate + +
+ + + + + + + +
+
+
+ + + l10n.mx.esignature.certificate.search + l10n.mx.esignature.certificate + + + + + + + + + + l10n.mx.esignature.certificate.tree + l10n.mx.esignature.certificate + + + + + + + + + + +
+
diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/ir_attachment_view.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/ir_attachment_view.xml new file mode 100644 index 0000000..e0fc6e1 --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/ir_attachment_view.xml @@ -0,0 +1,173 @@ + + + + + ir.attachment.search.inherit.cfdi.file.inovice + ir.attachment + + + + + + + + + + + ir.attachment.form.inherit.cfdi.file.inovice + ir.attachment + + + + + + +
+ + +
+
+
+
+ + + ir.attachment + + + + + + + + + + + + + + + + + Documentos digitales + ir.actions.act_window + ir.attachment + + + + [('cfdi_uuid','!=', False),('company_id','=',company_id)] + {'is_fiel_attachment': True, 'from_sat_sync': True} + +

+ Click here to create new documents. +

+

+ Also you will find here all the related documents and download it by clicking on any individual document. +

+
+
+ + + + tree + + + + + + + form + + + + + + + + + + Genera facturas + cfdi.invoice.attachment + new + form + {'create_so_po':False} + + + + + Genera pedidos + cfdi.invoice.attachment + new + form,list + {'create_so_po':True} + + + + + Desconcilar + ir.actions.server + code + + + + records.action_renmove_invoice_link() + + + + + Exportar XML + ir.actions.server + code + + + action=records.action_extract_zip() + + + + Conciliar + reconcile.vendor.cfdi.xml.bill + new + form + + + + + UUID De XML + ir.actions.server + code + + + records.run_cfdi_uuid() + + + + Descargar estado del SAT + ir.actions.server + code + + + + records.action_download_state() + + + +
diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/res_company_view.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/res_company_view.xml new file mode 100644 index 0000000..6258bb2 --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/res_company_view.xml @@ -0,0 +1,31 @@ + + + + + res.company.form.inherit.form.cfdi.file.inovice + res.company + + + + + + + + + + + + + + + + + + + + diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/res_config_settings_view.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/res_config_settings_view.xml new file mode 100644 index 0000000..401e79e --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/res_config_settings_view.xml @@ -0,0 +1,82 @@ + + + + res.config.settings.view.form.inherit.l10n.mx.sat.sync + res.config.settings + + + +

SAT Synchronization

+
+
+
+
+ MX E-Signatures +
+ Configure your E-Signatures. +
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/templates.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/templates.xml new file mode 100644 index 0000000..e509fab --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/views/templates.xml @@ -0,0 +1,11 @@ + + + + \ No newline at end of file diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/__init__.py b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/__init__.py new file mode 100644 index 0000000..a9d7e6f --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/__init__.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- + +from . import cfdi_invoice +from . import import_invoice_process_message +from . import reconcile_vendor_cfdi_xml_bill +from . import xml_invoice_reconcile +from . import descarga_x_dia_wizard +from . import attach_xmls_wizard \ No newline at end of file diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/attach_xmls_wizard.py b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/attach_xmls_wizard.py new file mode 100644 index 0000000..7384edc --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/attach_xmls_wizard.py @@ -0,0 +1,233 @@ + + +import base64 + +from lxml import etree, objectify + +from odoo import _, api, fields, models +from odoo.exceptions import UserError +from ..models.special_dict import CaselessDictionary + +TYPE_CFDI22_TO_CFDI33 = { + 'ingreso': 'I', + 'egreso': 'E', + 'traslado': 'T', + 'nomina': 'N', + 'pago': 'P', +} + + +class AttachXmlsWizard(models.TransientModel): + _name = 'multi.file.attach.xmls.wizard' + _description = 'AttachXmlsWizard' + + dragndrop = fields.Char() + + @api.model + def remove_wrong_file(self, files): + wrong_file_dict = self.check_xml(files) + remove_list = [] + if 'wrongfiles' in wrong_file_dict.keys(): + for key in wrong_file_dict['wrongfiles']: + value_keys = wrong_file_dict['wrongfiles'][key].keys() + if 'uuid_duplicated' in value_keys: + remove_list.append(key) + return remove_list + + @staticmethod + def _xml2capitalize(xml): + """Receive 1 lxml etree object and change all attrib to Capitalize. + """ + def recursive_lxml(element): + for attrib, value in element.attrib.items(): + new_attrib = "%s%s" % (attrib[0].upper(), attrib[1:]) + element.attrib.update({new_attrib: value}) + + for child in element.getchildren(): + child = recursive_lxml(child) + return element + return recursive_lxml(xml) + + @staticmethod + def _l10n_mx_edi_convert_cfdi32_to_cfdi33(xml): + """Convert a xml from cfdi32 to cfdi33 + :param xml: The xml 32 in lxml.objectify object + :return: A xml 33 in lxml.objectify object + """ + if xml.get('version', None) != '3.2': + return xml + # TODO: Process negative taxes "Retenciones" node + # TODO: Process payment term + xml = AttachXmlsWizard._xml2capitalize(xml) + xml.attrib.update({ + 'TipoDeComprobante': TYPE_CFDI22_TO_CFDI33[ + xml.attrib['tipoDeComprobante']], + 'Version': '3.3', + 'MetodoPago': 'PPD', + }) + return xml + + + @api.model + def l10n_mx_edi_get_tfd_etree(self, cfdi): + '''Get the TimbreFiscalDigital node from the cfdi. + + :param cfdi: The cfdi as etree + :return: the TimbreFiscalDigital node + ''' + if not hasattr(cfdi, 'Complemento'): + return None + attribute = 'tfd:TimbreFiscalDigital[1]' + namespace = {'tfd': 'http://www.sat.gob.mx/TimbreFiscalDigital'} + for Complemento in cfdi.Complemento: + node = Complemento.xpath(attribute, namespaces=namespace) + if node: + break + return node[0] if node else None + + @api.model + def check_xml(self, files): + """ Validate that attributes in the xml before create invoice + or attach xml in it + :param files: dictionary of CFDIs in b64 + :type files: dict + param account_id: The account by default that must be used in the + lines of the invoice if this is created + :type account_id: int + :return: the Result of the CFDI validation + :rtype: dict + """ + if not isinstance(files, dict): + raise UserError(_("Something went wrong. The parameter for XML " + "files must be a dictionary.")) + wrongfiles = {} + attachments = {} + attachment_uuids = {} + attach_obj = self.env['ir.attachment'] + company = self.env.company + company_vat = company.vat + company_id = company.id + NSMAP = { + 'xsi':'http://www.w3.org/2001/XMLSchema-instance', + 'cfdi':'http://www.sat.gob.mx/cfd/3', + 'tfd': 'http://www.sat.gob.mx/TimbreFiscalDigital', + 'pago10': 'http://www.sat.gob.mx/Pagos', + } + for key, xml64 in files.items(): + try: + if isinstance(xml64, bytes): + xml64 = xml64.decode() + xml_str = base64.b64decode(xml64.replace('data:text/xml;base64,', '')) + # Fix the CFDIs emitted by the SAT + xml_str = xml_str.replace(b'xmlns:schemaLocation', b'xsi:schemaLocation') + xml = objectify.fromstring(xml_str) + tree = etree.fromstring(xml_str) + except (AttributeError, SyntaxError) as exce: + wrongfiles.update({key: { + 'xml64': xml64, 'where': 'CheckXML', + 'error': [exce.__class__.__name__, str(exce)]}}) + continue + xml = self._l10n_mx_edi_convert_cfdi32_to_cfdi33(xml) + xml_tfd = self.l10n_mx_edi_get_tfd_etree(xml) + + xml_uuid = False if xml_tfd is None else xml_tfd.get('UUID', '') + + if not xml_uuid: + msg = {'signed': True, 'xml64': True} + wrongfiles.update({key: msg}) + continue + else: + xml_uuid = xml_uuid.upper() + + cfdi_type = xml.get('TipoDeComprobante', 'I') + receptor = xml.Receptor.attrib or {} + receptor_rfc = receptor.get('Rfc','') + if receptor_rfc == company_vat: + cfdi_type = 'S'+cfdi_type + + try: + ns = tree.nsmap + ns.update({'re': 'http://exslt.org/regular-expressions'}) + except Exception: + ns = {'re': 'http://exslt.org/regular-expressions'} + + cfdi_version = tree.get("Version",'4.0') + if cfdi_version=='4.0': + NSMAP.update({'cfdi':'http://www.sat.gob.mx/cfd/4', 'pago20': 'http://www.sat.gob.mx/Pagos20',}) + else: + NSMAP.update({'cfdi':'http://www.sat.gob.mx/cfd/3', 'pago10': 'http://www.sat.gob.mx/Pagos',}) + + if cfdi_type in ['I','E','P','N','T']: + element_tag = 'Receptor' + else: + element_tag = 'Emisor' + try: + elements = tree.xpath("//*[re:test(local-name(), '%s','i')]"%(element_tag), namespaces=ns) + except Exception: + elements = None + + client_rfc, client_name = '', '' + if elements: + attrib_dict = CaselessDictionary(dict(elements[0].attrib)) + client_rfc = attrib_dict.get('rfc') + client_name = attrib_dict.get('nombre') + + monto_total = 0 + if cfdi_type=='P' or cfdi_type=='SP': + + Complemento = tree.findall('cfdi:Complemento', NSMAP) + for complementos in Complemento: + if cfdi_version == '4.0': + pagos = complementos.find('pago20:Pagos', NSMAP) + pago = pagos.find('pago20:Totales', NSMAP) + monto_total = pago.attrib['MontoTotalPagos'] + else: + pagos = complementos.find('pago10:Pagos', NSMAP) + try: + pago = pagos.find('pago10:Pago',NSMAP) + monto_total = pago.attrib['Monto'] + except Exception as e: + for payment in pagos.find('pago10:Pago',NSMAP): + monto_total += float(payment.attrib['Monto']) + if pagos: + break + else: + monto_total = tree.get('Total', tree.get('total')) + + filename = xml_uuid + '.xml' + vals = { + 'cfdi_type' : cfdi_type, + 'cfdi_uuid' : xml_uuid, + 'rfc_tercero' : client_rfc, + 'nombre_tercero' : client_name, + 'cfdi_total' : monto_total, + 'date_cfdi' : tree.get('Fecha',tree.get('fecha')), + 'serie_folio' : tree.get('Folio',tree.get('folio')), + 'name' : filename, + 'store_fname' : filename, + 'datas' : xml64.replace('data:text/xml;base64,', ''), + 'type' :'binary', + 'company_id' :company_id, + } + + attachment_uuids.update({xml_uuid : [vals, key]}) + #uuids.append(xml_uuid) + + + attas = attach_obj.sudo().search([('cfdi_uuid','in',list(attachment_uuids.keys())), ('company_id', '=', company_id)]) + exist_uuids = dict([(att.cfdi_uuid, att.id) for att in attas]) #attas.mapped('cfdi_uuid') + + + for uuid, data in attachment_uuids.items(): + key = data[1] + if uuid in exist_uuids: + attachments.update({key: {'attachment_id': exist_uuids.get(uuid)}}) + continue + vals = data[0] + #cfdi_type ='S'+cfdi_type + attach_rec = attach_obj.create(vals) + attachments.update({key: {'attachment_id': attach_rec.id}}) + + return {'wrongfiles': wrongfiles, + 'attachments': attachments} + diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/attach_xmls_wizard_view.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/attach_xmls_wizard_view.xml new file mode 100644 index 0000000..2b312fe --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/attach_xmls_wizard_view.xml @@ -0,0 +1,30 @@ + + + + multi.file.attach.xmls.wizard.form + multi.file.attach.xmls.wizard + +
+ +


+ +
+ + + + + diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/cfdi_invoice.py b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/cfdi_invoice.py new file mode 100644 index 0000000..1045402 --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/cfdi_invoice.py @@ -0,0 +1,1191 @@ +# -*- coding: utf-8 -*- + +from odoo import models, fields, api, _ +import os +import base64 +import json, xmltodict +from odoo.tools.safe_eval import safe_eval +from odoo.exceptions import UserError + +from ..models.special_dict import CaselessDictionary +from odoo.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_DATETIME_FORMAT +from dateutil.parser import parse + +def convert_to_special_dict(d): + for k, v in d.items(): + if isinstance(v, dict): + d.__setitem__(k, convert_to_special_dict(CaselessDictionary(v))) + else: + d.__setitem__(k, v) + return d + +class CfdiInvoiceAttachment(models.TransientModel): + _name = 'cfdi.invoice.attachment' + _description = 'CfdiInvoiceAttachment' + + @api.model + def _default_journal(self): + if self._context.get('default_journal_id', False): + return self.env['account.journal'].browse(self._context.get('default_journal_id')) + company_id = self._context.get('company_id', self.env.company.id) + domain = [ + ('type', 'in', ['sale']), + ('company_id', '=', company_id), + ] + return self.env['account.journal'].search(domain, limit=1) + + @api.model + def _default_supplier_journal(self): + if self._context.get('default_journal_id', False): + return self.env['account.journal'].browse(self._context.get('default_journal_id')) + company_id = self._context.get('company_id', self.env.company.id) + domain = [ + ('type', 'in', ['purchase']), + ('company_id', '=', company_id), + ] + return self.env['account.journal'].search(domain, limit=1) + + journal_id = fields.Many2one('account.journal', string='Diario de facturas venta', + required=False, + default=_default_journal, + domain="[('type', 'in', ['sale'])]") + + supplier_journal_id = fields.Many2one('account.journal', string='Diario de facturas compras', + required=False, + default=_default_supplier_journal, + domain="[('type', 'in', ['purchase'])]") + + credit_journal_id = fields.Many2one('account.journal', string='Diario de notas de crédito venta', + required=False, + default=_default_journal, + domain="[('type', 'in', ['sale'])]") + + credit_supplier_journal_id = fields.Many2one('account.journal', string='Diario de notas de crédito compra', + required=False, + default=_default_supplier_journal, + domain="[('type', 'in', ['purchase'])]") + + company_id = fields.Many2one('res.company', string='Compañia', + required=True, readonly=True, + default=lambda self: self.env.company) + si_producto_no_tiene_codigo = fields.Selection( + [('Crear automatico', 'Crear automatico'), ('Buscar manual', 'Producto por defecto')], + 'Si producto no se encuentra') + product_id = fields.Many2one("product.product", 'Producto por defecto', + help='Si un producto del XML no se encuentra en la base de datos, utilizará el producto por defecto en vez de crear un nuevo producto.') + + @api.model + def default_get(self, fields_list): + res = super(CfdiInvoiceAttachment, self).default_get(fields_list) + create_set = self.env['ir.config_parameter'].sudo().get_param('l10n_mx_sat_sync_itadmin_ee.si_producto_no_tiene_codigo') + if create_set: + res['si_producto_no_tiene_codigo'] = create_set + return res + + def import_xml_file(self): + ctx = self._context.copy() + active_ids = ctx.get('active_ids') + model = ctx.get('active_model', '') + if model == 'ir.attachment' and active_ids: + attachments = self.env[model].browse(active_ids) + not_imported_attachment = {} + imported_attachment = [] + existed_attachment = [] + create_invoice_ids = [] + + invoice_obj = self.env['account.move'] + cfdi_uuids = attachments.mapped("cfdi_uuid") + exist_invoices = invoice_obj.search([('l10n_mx_edi_cfdi_uuid_cusom', 'in', cfdi_uuids)]) + exist_invoice_uuids = exist_invoices.mapped('l10n_mx_edi_cfdi_uuid_cusom') + + create_so_po = ctx.get('create_so_po', False) + + for attachment in attachments: + cfdi_uuid = attachment.cfdi_uuid + if not cfdi_uuid: + not_imported_attachment.update({attachment.name: 'Archivo adjunto no válido'}) + continue + if cfdi_uuid in exist_invoice_uuids: + existed_attachment.append(attachment.name) + continue + p, ext = os.path.splitext(attachment.name) + + if ext[1:].lower() != 'xml': + not_imported_attachment.update({attachment.name: _( + "Formato no soportado \"{}\", importa solo archivos XML").format(attachment.name)}) + continue + + # file_content = base64.b64decode(attachment.datas) + try: + res = None + if create_so_po: + if attachment.cfdi_type == 'I': + res = self.import_sale_order(attachment.datas) + elif attachment.cfdi_type == 'SI': + res = self.import_purchase_order(attachment.datas) + else: + continue + else: + if attachment.cfdi_type == 'I': + res = self.import_customer_invoice(attachment.datas, self.journal_id) + elif attachment.cfdi_type == 'SI': + res = self.import_supplier_invoice(attachment.datas, self.supplier_journal_id) + elif attachment.cfdi_type == 'E': + res = self.import_credit_note(attachment.datas, self.credit_journal_id) + elif attachment.cfdi_type == 'SE': + res = self.import_supplier_credit_note(attachment.datas, self.credit_supplier_journal_id) + + if res and type(res) == dict: + val = {'creado_en_odoo': True, } + if res.get('res_model') == 'account.move': + val.update({'invoice_ids': [(6, 0, [res.get('res_id')])], 'res_id': res.get('res_id'), + 'res_model': 'account.move'}) + create_invoice_ids.append(res.get('res_id')) + attachment.write(val) + + except Exception as e: + if hasattr(e, 'name'): + not_imported_attachment.update({attachment: e.name}) + elif hasattr(e, 'message'): + not_imported_attachment.update({attachment: e.message}) + else: + not_imported_attachment.update({attachment: str(e)}) + self.env.cr.rollback() + continue + imported_attachment.append(attachment.name) + + ctx = {'create_invoice_ids': create_invoice_ids} + if existed_attachment: + ctx.update({'existed_attachment': '

' + '

'.join(existed_attachment) + '

'}) + if not_imported_attachment: + content = '' + for attachment, error in not_imported_attachment.items(): + content += '

' + attachment.name + ':

&nbsp; &nbsp; &nbsp; &nbsp; &bull; Error : %s

' % ( + error) + + ctx.update({'not_imported_attachment': content}) # '

'+'

'.join(not_imported_attachment)+'

' + + if imported_attachment: + ctx.update({'imported_attachment': '

' + '

'.join(imported_attachment) + '

'}) + return { + 'name': "Resultado de importación", + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': 'import.invoice.process.message', + 'type': 'ir.actions.act_window', + 'target': 'new', + 'context': ctx, + } + return + + @api.model + def create_update_partner(self, partner_data, is_customer=True, is_supplier=False): + domain = [] + vendor_name = partner_data.get('@Nombre') + rfc = partner_data.get('@Rfc') + partner_obj = self.env['res.partner'] + vals = {} + # if vendor_name: + # domain.append(('name','=',vendor_name)) + if rfc and hasattr(partner_obj, 'vat'): + domain.append(('vat', '=', rfc)) + vals.update({'vat': rfc}) + if rfc == 'XAXX010101000' or rfc == 'XEXX010101000': + domain.append(('name', '=', vendor_name)) + odoo_vendor = partner_obj.search(domain, limit=1) + if not odoo_vendor: + vals.update({'name': vendor_name, 'country_id': self.env['res.country'].search([('code','=','MX')],limit=1).id}) + odoo_vendor = partner_obj.create(vals) + + return odoo_vendor + + def import_customer_invoice(self, file_content, journal=False): + file_coontent = base64.b64decode(file_content) + file_coontent = file_coontent.replace(b'cfdi:', b'') + file_coontent = file_coontent.replace(b'tfd:', b'') + try: + data = json.dumps(xmltodict.parse(file_coontent)) # force_list=('Concepto','Traslado',) + data = json.loads(data) + except Exception as e: + data = {} + raise UserError(str(e)) + + data = CaselessDictionary(data) + data = convert_to_special_dict(data) + + invoice_obj = self.env['account.move'] + invoice_line_obj = self.env['account.move.line'] + product_obj = self.env['product.product'] + + product_types = dict(product_obj._fields.get('type')._description_selection(product_obj.env)) + product_type_default = self.env['ir.config_parameter'].sudo().get_param('l10n_mx_sat_sync_itadmin_ee.product_type_default') + + #tax_obj = self.env['account.tax'] + partner_data = data.get('Comprobante', {}).get('Receptor', {}) + invoice_line_data = data.get('Comprobante', {}).get('Conceptos', {}).get('Concepto', []) + if type(invoice_line_data) != list: + invoice_line_data = [invoice_line_data] + + invoice_date = data.get('Comprobante', {}).get('@Fecha') + customer_reference = data.get('Comprobante', {}).get('@Serie', '') + data.get('Comprobante', {}).get('@Folio','') + receptor_data = data.get('Comprobante', {}).get('Receptor', {}) + timbrado_data = data.get('Comprobante', {}).get('Complemento', {}).get('TimbreFiscalDigital', {}) + + vendor_uuid = timbrado_data.get('@UUID') + + if vendor_uuid != '': + vendor_order_exist = invoice_obj.search([('l10n_mx_edi_cfdi_uuid_cusom', '=', vendor_uuid.lower())], limit=1) + if not vendor_order_exist: + vendor_order_exist = invoice_obj.search([('l10n_mx_edi_cfdi_uuid_cusom', '=', vendor_uuid.upper())], limit=1) + if vendor_order_exist: + raise UserError("Factura ya existente con ese UUID %s" % (vendor_uuid)) + + if customer_reference != '': + invoice_exist = invoice_obj.search([('ref', '=', customer_reference), ('move_type', '=', 'out_invoice')], limit=1) + if invoice_exist: + customer_reference = '' + # raise UserError("Factura ya existente con la referencia del vendedor %s"%(customer_reference)) + + ctx = self._context.copy() + ctx.update({'default_type': 'out_invoice', 'move_type': 'out_invoice'}) + partner = self.create_update_partner(partner_data) + if not journal: + journal = invoice_obj.with_context(ctx)._default_journal() + # journal = invoice_obj.with_context(ctx)._default_journal() + + invoice_vals = { + 'move_type':'out_invoice', + 'partner_id':partner.id, + 'ref':customer_reference, + 'l10n_mx_edi_usage' : receptor_data.get('@UsoCFDI') if receptor_data.get('@UsoCFDI') != 'S01' else 'P01', + 'l10n_mx_edi_payment_method_id': self.env['l10n_mx_edi.payment.method'].sudo().search([('code','=',data.get('Comprobante', {}).get('@FormaPago', {}))]), + 'l10n_mx_edi_payment_policy':data.get('Comprobante',{}).get('@MetodoPago',{}), + + #'tipo_comprobante': data.get('Comprobante',{}).get('@TipoDeComprobante'), + #'estado_factura': 'factura_correcta', + #'tipocambio': data.get('Comprobante',{}).get('@TipoCambio'), + #'currency_id.name': data.get('Comprobante',{}).get('@Moneda'), + + #'numero_cetificado': timbrado_data.get('@NoCertificadoSAT'), + #'fecha_certificacion': timbrado_data.get('@FechaTimbrado') and parse(timbrado_data.get('@FechaTimbrado')).strftime(DEFAULT_SERVER_DATETIME_FORMAT) or False, #data.get('Comprobante',{}).get('@FechaTimbrado') + #'selo_digital_cdfi': timbrado_data.get('@SelloCFD'), + #'selo_sat': timbrado_data.get('@SelloSAT'), + 'currency_id': journal.currency_id.id or journal.company_id.currency_id.id or self.env.company.currency_id.id, + 'company_id': self.env.company.id, + 'journal_id': journal.id, + } + + currency_code = data.get('Comprobante', {}).get('@Moneda', 'MXN') + currency = self.env['res.currency'].search([('name', '=', currency_code)], limit=1) + if not currency: + currency = self.env['res.currency'].with_context(active_test=False).search([('name','=',currency_code)], limit=1) + if currency: + currency.write({'active': True}) + if currency: + invoice_vals.update({'currency_id': currency.id}) + + customer_invoice = invoice_obj.with_context(ctx).new(invoice_vals) + customer_invoice._onchange_partner_id() + invoice_vals = customer_invoice._convert_to_write({name: customer_invoice[name] for name in customer_invoice._cache}) + invoice_vals.update({'invoice_date': parse(invoice_date).strftime(DEFAULT_SERVER_DATE_FORMAT),'journal_id' : journal.id,}) + + fields = invoice_line_obj._fields.keys() + ctx.update({'journal': journal.id}) + move_lines = [] + for line in invoice_line_data: + product_name = line.get('@Descripcion') + discount_amount = safe_eval(line.get('@Descuento', '0.0')) + unit_price = safe_eval(line.get('@ValorUnitario', '0.0')) + default_code = line.get('@NoIdentificacion') + qty = safe_eval(line.get('@Cantidad', '1.0')) + clave_unidad = line.get('@ClaveUnidad') + clave_producto = line.get('@ClaveProdServ') + taxes = line.get('Impuestos', {}).get('Traslados', {}).get('Traslado') + tax_ids = [] + if taxes: + if type(taxes) != list: + taxes = [taxes] + else: + taxes = [] + no_imp_tras = len(taxes) + if line.get('Impuestos', {}).get('Retenciones', {}): + other_taxes = line.get('Impuestos', {}).get('Retenciones', {}).get('Retencion') + if type(other_taxes) != list: + other_taxes = [other_taxes] + taxes.extend(other_taxes) + if taxes: + if type(taxes) != list: + taxes = [taxes] + tax_ids = self.get_tax_from_codes(taxes,'sale',no_imp_tras) + + product_exist = self.get_or_create_product(default_code, product_name, clave_unidad, unit_price, clave_producto, sale_ok=True, purchase_ok=False) + + if discount_amount: + discount_percent = discount_amount * 100.0 / (unit_price * qty) + else: + discount_percent = 0.0 + + line_data = invoice_line_obj.default_get(fields) + line_data.update({ + # 'move_id': invoice_exist.id, + 'product_id': product_exist.id, + 'name': product_name, + 'product_uom_id': product_exist.uom_po_id.id, + 'price_unit': unit_price, + 'discount': discount_percent, + }) + + # invoice_line = invoice_line_obj.with_context(ctx).new(line_data) + # invoice_line.with_context(ctx)._onchange_product_id() + # line_data = invoice_line._convert_to_write({name: invoice_line[name] for name in invoice_line._cache}) + if taxes: + line_data.update({ + 'tax_ids': [(6, 0, tax_ids)], + 'quantity': qty or 1, + 'price_unit': unit_price, + }) + else: + line_data.update({ + 'tax_ids': [], + 'quantity': qty or 1, + 'price_unit': unit_price, + }) + move_lines.append((0, 0, line_data)) + # invoice_line_obj.create(line_data) + + if move_lines: + invoice_vals.update({'invoice_line_ids': move_lines}) + if 'line_ids' in invoice_vals: + invoice_vals.pop('line_ids') + invoice_exist = invoice_obj.with_context(ctx).create(invoice_vals) + + # invoice_exist.compute_taxes() + action = self.env.ref('account.action_move_out_invoice_type').sudo() + result = action.read()[0] + res = self.env.ref('account.view_move_form', False).sudo() + result['views'] = [(res and res.id or False, 'form')] + result['res_id'] = invoice_exist.id + return result + + def import_supplier_invoice(self, file_content, journal=False): + file_content = base64.b64decode(file_content) + file_content = file_content.replace(b'cfdi:', b'') + file_content = file_content.replace(b'tfd:', b'') + try: + data = json.dumps(xmltodict.parse(file_content)) # ,force_list=('Concepto','Traslado',) + data = json.loads(data) + except Exception as e: + data = {} + raise UserError(str(e)) + + data = CaselessDictionary(data) + data = convert_to_special_dict(data) + + invoice_obj = self.env['account.move'] + invoice_line_obj = self.env['account.move.line'] + product_obj = self.env['product.product'] + product_types = dict(product_obj._fields.get('type')._description_selection(product_obj.env)) + product_type_default = self.env['ir.config_parameter'].sudo().get_param('l10n_mx_sat_sync_itadmin_ee.product_type_default') + + #tax_obj = self.env['account.tax'] + vendor_data = data.get('Comprobante', {}).get('Emisor', {}) + invoice_line_data = data.get('Comprobante', {}).get('Conceptos', {}).get('Concepto', []) + if type(invoice_line_data) != list: + invoice_line_data = [invoice_line_data] + + invoice_date = data.get('Comprobante', {}).get('@Fecha') + vendor_reference = data.get('Comprobante', {}).get('@Serie', '') + data.get('Comprobante', {}).get('@Folio', '') + receptor_data = data.get('Comprobante', {}).get('Receptor', {}) + timbrado_data = data.get('Comprobante', {}).get('Complemento', {}).get('TimbreFiscalDigital', {}) + + vendor_uuid = timbrado_data.get('@UUID') + + if vendor_uuid != '': + vendor_order_exist = invoice_obj.search([('l10n_mx_edi_cfdi_uuid_cusom','=',vendor_uuid.lower())],limit=1) + if not vendor_order_exist: + vendor_order_exist = invoice_obj.search([('l10n_mx_edi_cfdi_uuid_cusom','=',vendor_uuid.upper())],limit=1) + if vendor_order_exist: + raise UserError("Factura ya existente con ese UUID %s" % (vendor_uuid)) + + if vendor_reference != '': + invoice_exist = invoice_obj.search([('ref','=',vendor_reference), ('move_type','=', 'in_invoice')],limit=1) + if invoice_exist: + vendor_reference = '' + # raise UserError("Factura ya existente con la referencia del vendedor %s"%(vendor_reference)) + + vendor = self.create_update_partner(vendor_data, is_customer=False, is_supplier=True) + + ctx = self._context.copy() + ctx.update({'default_type': 'in_invoice', 'move_type': 'in_invoice'}) + if not journal: + journal = invoice_obj.with_context(ctx)._default_journal() + + invoice_vals = { + 'move_type':'in_invoice', + 'partner_id':vendor.id, + 'ref':vendor_reference, + 'l10n_mx_edi_usage' : receptor_data.get('@UsoCFDI') if receptor_data.get('@UsoCFDI') != 'S01' else 'P01', + 'l10n_mx_edi_payment_method_id': self.env['l10n_mx_edi.payment.method'].sudo().search([('code','=',data.get('Comprobante', {}).get('@FormaPago', {}))]), + 'l10n_mx_edi_payment_policy':data.get('Comprobante',{}).get('@MetodoPago',{}), + + #'tipo_comprobante': data.get('Comprobante',{}).get('@TipoDeComprobante'), + #'estado_factura': 'factura_correcta', + #'tipocambio': data.get('Comprobante',{}).get('@TipoCambio'), + #'currency_id.name': data.get('Comprobante',{}).get('@Moneda'), + + #'numero_cetificado': timbrado_data.get('@NoCertificadoSAT'), + #'fecha_certificacion': timbrado_data.get('@FechaTimbrado') and parse(timbrado_data.get('@FechaTimbrado')).strftime(DEFAULT_SERVER_DATETIME_FORMAT) or False, + #'selo_digital_cdfi': timbrado_data.get('@SelloCFD'), + #'selo_sat': timbrado_data.get('@SelloSAT'), + 'currency_id' : journal.currency_id.id or journal.company_id.currency_id.id or self.env.company.currency_id.id, + 'company_id' : self.env.company.id, + 'journal_id' : journal.id, + } + + currency_code = data.get('Comprobante', {}).get('@Moneda', 'MXN') + currency = self.env['res.currency'].search([('name', '=', currency_code)], limit=1) + if not currency: + currency = self.env['res.currency'].with_context(active_test=False).search([('name','=',currency_code)], limit=1) + if currency: + currency.write({'active': True}) + if currency: + invoice_vals.update({'currency_id': currency.id}) + + vendor_invoice = invoice_obj.with_context(ctx).new(invoice_vals) + vendor_invoice._onchange_partner_id() + invoice_vals = vendor_invoice._convert_to_write({name: vendor_invoice[name] for name in vendor_invoice._cache}) + invoice_vals.update({'invoice_date':parse(invoice_date).strftime(DEFAULT_SERVER_DATE_FORMAT),'journal_id' : journal.id,}) + + fields = invoice_line_obj._fields.keys() + ctx.update({'journal': journal.id}) + + move_lines = [] + + for line in invoice_line_data: + product_name = line.get('@Descripcion') + discount_amount = safe_eval(line.get('@Descuento', '0.0')) + unit_price = safe_eval(line.get('@ValorUnitario', '0.0')) + default_code = line.get('@NoIdentificacion') + qty = safe_eval(line.get('@Cantidad', '1.0')) + clave_unidad = line.get('@ClaveUnidad') + clave_producto = line.get('@ClaveProdServ') + taxes = line.get('Impuestos', {}).get('Traslados', {}).get('Traslado') + tax_ids = [] + if taxes: + if type(taxes) != list: + taxes = [taxes] + else: + taxes = [] + no_imp_tras = len(taxes) + if line.get('Impuestos',{}).get('Retenciones',{}): + other_taxes = line.get('Impuestos',{}).get('Retenciones',{}).get('Retencion') + if type(other_taxes)!=list: + other_taxes = [other_taxes] + + taxes.extend(other_taxes) + if taxes: + if type(taxes)!=list: + taxes = [taxes] + tax_ids = self.get_tax_from_codes(taxes,'purchase',no_imp_tras) + + product_exist = self.get_or_create_product(default_code, product_name, clave_unidad, unit_price, clave_producto, sale_ok=False, purchase_ok=True) + + if discount_amount: + discount_percent = discount_amount * 100.0 / (unit_price * qty) + else: + discount_percent = 0.0 + + line_data = invoice_line_obj.default_get(fields) + line_data.update({ + # 'move_id': invoice_exist.id, + 'product_id': product_exist.id, + 'name': product_name, + 'product_uom_id': product_exist.uom_po_id.id, + 'price_unit': unit_price, + 'discount': discount_percent, + }) + + # invoice_line = invoice_line_obj.with_context(ctx).new(line_data) + # invoice_line.with_context(ctx)._onchange_product_id() + # line_data = invoice_line._convert_to_write({name: invoice_line[name] for name in invoice_line._cache}) + if taxes: + line_data.update({ + 'tax_ids': [(6, 0, tax_ids)], + 'quantity': qty or 1, + 'price_unit': unit_price, + }) + else: + line_data.update({ + 'tax_ids': [], + 'quantity': qty or 1, + 'price_unit': unit_price, + }) + move_lines.append((0, 0, line_data)) + # invoice_line_obj.create(line_data) + + if move_lines: + invoice_vals.update({'invoice_line_ids': move_lines}) + if 'line_ids' in invoice_vals: + invoice_vals.pop('line_ids') + + invoice_exist = invoice_obj.with_context(ctx).create(invoice_vals) + # invoice_exist.compute_taxes() + action = self.env.ref('account.action_move_in_invoice_type').sudo() + result = action.read()[0] + res = self.env.ref('account.view_move_form', False).sudo() + result['views'] = [(res and res.id or False, 'form')] + result['res_id'] = invoice_exist.id + return result + + @api.model + def import_credit_note(self, file_content, journal=False): + file_content = base64.b64decode(file_content) + file_content = file_content.replace(b'cfdi:', b'') + file_content = file_content.replace(b'tfd:', b'') + try: + data = json.dumps(xmltodict.parse(file_content)) # ,force_list=('Concepto','Traslado',) + data = json.loads(data) + except Exception as e: + data = {} + raise UserError(str(e)) + + data = CaselessDictionary(data) + data = convert_to_special_dict(data) + + invoice_obj = self.env['account.move'] + invoice_line_obj = self.env['account.move.line'] + product_obj = self.env['product.product'] + product_types = dict(product_obj._fields.get('type')._description_selection(product_obj.env)) + product_type_default = self.env['ir.config_parameter'].sudo().get_param('l10n_mx_sat_sync_itadmin_ee.product_type_default') + + #tax_obj = self.env['account.tax'] + partner_data = data.get('Comprobante',{}).get('Receptor',{}) + invoice_line_data = data.get('Comprobante',{}).get('Conceptos',{}).get('Concepto',[]) + if type(invoice_line_data) != list: + invoice_line_data = [invoice_line_data] + + invoice_date = data.get('Comprobante', {}).get('@Fecha') + customer_reference = data.get('Comprobante', {}).get('@Serie', '') + data.get('Comprobante', {}).get('@Folio','') + receptor_data = data.get('Comprobante', {}).get('Receptor', {}) + timbrado_data = data.get('Comprobante', {}).get('Complemento', {}).get('TimbreFiscalDigital', {}) + + vendor_uuid = timbrado_data.get('@UUID') + if vendor_uuid != '': + vendor_order_exist = invoice_obj.search([('l10n_mx_edi_cfdi_uuid_cusom','=',vendor_uuid.lower())],limit=1) + if not vendor_order_exist: + vendor_order_exist = invoice_obj.search([('l10n_mx_edi_cfdi_uuid_cusom','=',vendor_uuid.upper())],limit=1) + if vendor_order_exist: + raise UserError("Factura ya existente con ese UUID %s" % (vendor_uuid)) + + if customer_reference != '': + invoice_exist = invoice_obj.search([('ref', '=', customer_reference), ('move_type', '=', 'out_refund')], limit=1) + if invoice_exist: + customer_reference = '' + # raise UserError("Factura ya existente con la referencia del vendedor %s"%(customer_reference)) + + ctx = self._context.copy() + ctx.update({'default_type': 'out_refund', 'move_type': 'out_refund'}) + + partner = self.create_update_partner(partner_data) + if not journal: + journal = invoice_obj.with_context(ctx)._default_journal() + # journal = invoice_obj.with_context(ctx)._default_journal() + + invoice_vals = { + 'move_type':'out_refund', + 'partner_id':partner.id, + 'ref':customer_reference, + 'l10n_mx_edi_usage' : receptor_data.get('@UsoCFDI') if receptor_data.get('@UsoCFDI') != 'S01' else 'P01', + 'l10n_mx_edi_payment_method_id': self.env['l10n_mx_edi.payment.method'].sudo().search([('code','=',data.get('Comprobante', {}).get('@FormaPago', {}))]), + 'l10n_mx_edi_payment_policy':data.get('Comprobante',{}).get('@MetodoPago',{}), + + #'tipo_comprobante': data.get('Comprobante',{}).get('@TipoDeComprobante'), + #'estado_factura': 'factura_correcta', + #'tipocambio': data.get('Comprobante',{}).get('@TipoCambio'), + + #'numero_cetificado': timbrado_data.get('@NoCertificadoSAT'), + #'fecha_certificacion': timbrado_data.get('@FechaTimbrado') and parse(timbrado_data.get('@FechaTimbrado')).strftime(DEFAULT_SERVER_DATETIME_FORMAT) or False, + #'selo_digital_cdfi': timbrado_data.get('@SelloCFD'), + #'selo_sat': timbrado_data.get('@SelloSAT'), + 'currency_id' : journal.currency_id.id or journal.company_id.currency_id.id or self.env.company.currency_id.id, + 'company_id' : self.env.company.id, + 'journal_id' : journal.id, + } + + currency_code = data.get('Comprobante',{}).get('@Moneda','MXN') + currency = self.env['res.currency'].search([('name','=',currency_code)], limit=1) + if not currency: + currency = self.env['res.currency'].with_context(active_test=False).search([('name', '=', currency_code)], limit=1) + if currency: + currency.write({'active': True}) + if currency: + invoice_vals.update({'currency_id': currency.id}) + + customer_invoice = invoice_obj.with_context(ctx).new(invoice_vals) + customer_invoice._onchange_partner_id() + invoice_vals = customer_invoice._convert_to_write( + {name: customer_invoice[name] for name in customer_invoice._cache}) + invoice_vals.update( + {'invoice_date': parse(invoice_date).strftime(DEFAULT_SERVER_DATE_FORMAT), 'journal_id': journal.id, }) + + fields = invoice_line_obj._fields.keys() + ctx.update({'journal': journal.id}) + + move_lines = [] + for line in invoice_line_data: + product_name = line.get('@Descripcion') + discount_amount = safe_eval(line.get('@Descuento', '0.0')) + unit_price = safe_eval(line.get('@ValorUnitario', '0.0')) + default_code = line.get('@NoIdentificacion') + qty = safe_eval(line.get('@Cantidad', '1.0')) + clave_unidad = line.get('@ClaveUnidad') + clave_producto = line.get('@ClaveProdServ') + taxes = line.get('Impuestos', {}).get('Traslados', {}).get('Traslado') + tax_ids = [] + if taxes: + if type(taxes) != list: + taxes = [taxes] + else: + taxes = [] + no_imp_tras = len(taxes) + if line.get('Impuestos', {}).get('Retenciones', {}): + other_taxes = line.get('Impuestos', {}).get('Retenciones', {}).get('Retencion') + if type(other_taxes) != list: + other_taxes = [other_taxes] + taxes.extend(other_taxes) + if taxes: + if type(taxes) != list: + taxes = [taxes] + tax_ids = self.get_tax_from_codes(taxes,'sale',no_imp_tras) + + product_exist = self.get_or_create_product(default_code, product_name, clave_unidad, unit_price, clave_producto, sale_ok=True, purchase_ok=False) + + if discount_amount: + discount_percent = discount_amount * 100.0 / (unit_price * qty) + else: + discount_percent = 0.0 + + line_data = invoice_line_obj.default_get(fields) + line_data.update({ + # 'move_id': invoice_exist.id, + 'product_id': product_exist.id, + 'name': product_name, + 'product_uom_id': product_exist.uom_po_id.id, + 'price_unit': unit_price, + 'discount': discount_percent, + }) + + # invoice_line = invoice_line_obj.with_context(ctx).new(line_data) + # invoice_line.with_context(ctx)._onchange_product_id() + # line_data = invoice_line._convert_to_write({name: invoice_line[name] for name in invoice_line._cache}) + if taxes: + line_data.update({ + 'tax_ids': [(6, 0, tax_ids)], + 'quantity': qty or 1, + 'price_unit': unit_price, + }) + else: + line_data.update({ + 'tax_ids': [], + 'quantity': qty or 1, + 'price_unit': unit_price, + }) + move_lines.append((0, 0, line_data)) + # invoice_line_obj.create(line_data) + + if move_lines: + invoice_vals.update({'invoice_line_ids': move_lines}) + if 'line_ids' in invoice_vals: + invoice_vals.pop('line_ids') + invoice_exist = invoice_obj.with_context(ctx).create(invoice_vals) + + # invoice_exist.compute_taxes() + action = self.env.ref('account.action_move_out_refund_type').sudo() + result = action.read()[0] + res = self.env.ref('account.view_move_form', False).sudo() + result['views'] = [(res and res.id or False, 'form')] + result['res_id'] = invoice_exist.id + return result + + @api.model + def import_supplier_credit_note(self, file_content, journal=False): + file_content = base64.b64decode(file_content) + file_content = file_content.replace(b'cfdi:', b'') + file_content = file_content.replace(b'tfd:', b'') + try: + data = json.dumps(xmltodict.parse(file_content)) + data = json.loads(data) + except Exception as e: + data = {} + raise UserError(str(e)) + + data = CaselessDictionary(data) + data = convert_to_special_dict(data) + + invoice_obj = self.env['account.move'] + invoice_line_obj = self.env['account.move.line'] + product_obj = self.env['product.product'] + #tax_obj = self.env['account.tax'] + product_types = dict(product_obj._fields.get('type')._description_selection(product_obj.env)) + product_type_default = self.env['ir.config_parameter'].sudo().get_param('l10n_mx_sat_sync_itadmin_ee.product_type_default') + + vendor_data = data.get('Comprobante', {}).get('Emisor', {}) + invoice_line_data = data.get('Comprobante', {}).get('Conceptos', {}).get('Concepto', []) + if type(invoice_line_data) != list: + invoice_line_data = [invoice_line_data] + + invoice_date = data.get('Comprobante', {}).get('@Fecha') + vendor_reference = data.get('Comprobante', {}).get('@Serie', '') + data.get('Comprobante', {}).get('@Folio', '') + receptor_data = data.get('Comprobante', {}).get('Receptor', {}) + timbrado_data = data.get('Comprobante', {}).get('Complemento', {}).get('TimbreFiscalDigital', {}) + + purchase_uuid = timbrado_data.get('@UUID') + if purchase_uuid != '': + purchase_order_exist = invoice_obj.search([('l10n_mx_edi_cfdi_uuid_cusom','=',purchase_uuid.lower())],limit=1) + if not purchase_order_exist: + purchase_order_exist = invoice_obj.search([('l10n_mx_edi_cfdi_uuid_cusom','=',purchase_uuid.upper())],limit=1) + if purchase_order_exist: + raise UserError("Factura ya existente con ese UUID %s" % (purchase_uuid)) + + if vendor_reference != '': + invoice_exist = invoice_obj.search([('ref', '=', vendor_reference), ('move_type', '=', 'in_refund')], limit=1) + if invoice_exist: + vendor_reference = '' + # raise UserError("Factura ya existente con la referencia del vendedor %s"%(vendor_reference)) + + # vendor = self.env['import.purchase.order.from.xml'].create_update_vendor(vendor_data) + vendor = self.create_update_partner(vendor_data, is_customer=False, is_supplier=True) + + ctx = self._context.copy() + ctx.update({'default_type': 'in_refund', 'move_type': 'in_refund', }) + + invoice_fields = invoice_obj._fields.keys() + invoice_vals = invoice_obj.default_get(invoice_fields) + if not journal: + journal = invoice_obj.with_context(ctx)._default_journal() + #journal = invoice_obj.with_context(ctx)._default_journal() + + invoice_vals.update({ + 'move_type':'in_refund', + 'partner_id':vendor.id, + 'ref':vendor_reference, + 'l10n_mx_edi_usage' : receptor_data.get('@UsoCFDI') if receptor_data.get('@UsoCFDI') != 'S01' else 'P01', + 'l10n_mx_edi_payment_method_id': self.env['l10n_mx_edi.payment.method'].sudo().search([('code','=',data.get('Comprobante', {}).get('@FormaPago', {}))]), + 'l10n_mx_edi_payment_policy':data.get('Comprobante',{}).get('@MetodoPago',{}), + + #'tipo_comprobante': data.get('Comprobante',{}).get('@TipoDeComprobante'), + #'estado_factura': 'factura_correcta', + #'tipocambio': data.get('Comprobante',{}).get('@TipoCambio'), + #'currency_id.name': data.get('Comprobante',{}).get('@Moneda'), + #'numero_cetificado': timbrado_data.get('@NoCertificadoSAT'), + #'fecha_certificacion': timbrado_data.get('@FechaTimbrado') and parse(timbrado_data.get('@FechaTimbrado')).strftime(DEFAULT_SERVER_DATETIME_FORMAT) or False, + #'selo_digital_cdfi': timbrado_data.get('@SelloCFD'), + #'selo_sat': timbrado_data.get('@SelloSAT'), + 'currency_id' : journal.currency_id.id or journal.company_id.currency_id.id or self.env.company.currency_id.id, + 'company_id' : self.env.company.id, + 'journal_id' : journal.id, + }) + + currency_code = data.get('Comprobante',{}).get('@Moneda','MXN') + currency = self.env['res.currency'].search([('name','=',currency_code)], limit=1) + if not currency: + currency = self.env['res.currency'].with_context(active_test=False).search([('name','=',currency_code)], limit=1) + if currency: + currency.write({'active': True}) + if currency: + invoice_vals.update({'currency_id': currency.id}) + + vendor_invoice = invoice_obj.with_context(ctx).new(invoice_vals) + vendor_invoice._onchange_partner_id() + invoice_vals = vendor_invoice._convert_to_write({name: vendor_invoice[name] for name in vendor_invoice._cache}) + invoice_vals.update( + {'invoice_date': parse(invoice_date).strftime(DEFAULT_SERVER_DATE_FORMAT), 'journal_id': journal.id, }) + + fields = invoice_line_obj._fields.keys() + ctx.update({'journal': journal.id}) + + move_lines = [] + + for line in invoice_line_data: + product_name = line.get('@Descripcion') + discount_amount = safe_eval(line.get('@Descuento', '0.0')) + unit_price = safe_eval(line.get('@ValorUnitario', '0.0')) + default_code = line.get('@NoIdentificacion') + qty = safe_eval(line.get('@Cantidad', '1.0')) + clave_unidad = line.get('@ClaveUnidad') + clave_producto = line.get('@ClaveProdServ') + taxes = line.get('Impuestos', {}).get('Traslados', {}).get('Traslado') + if taxes: + if type(taxes) != list: + taxes = [taxes] + else: + taxes = [] + no_imp_tras = len(taxes) + if line.get('Impuestos', {}).get('Retenciones', {}): + other_taxes = line.get('Impuestos', {}).get('Retenciones', {}).get('Retencion') + if type(other_taxes) != list: + other_taxes = [other_taxes] + taxes.extend(other_taxes) + if type(taxes) != list: + taxes = [taxes] + tax_ids = self.get_tax_from_codes(taxes or [],'purchase',no_imp_tras) + + product_exist = self.get_or_create_product(default_code, product_name, clave_unidad, unit_price, clave_producto, sale_ok=False, purchase_ok=True) + + if discount_amount: + discount_percent = discount_amount * 100.0 / (unit_price * qty) + else: + discount_percent = 0.0 + + line_data = invoice_line_obj.default_get(fields) + line_data.update({ + # 'move_id': invoice_exist.id, + 'product_id': product_exist.id, + 'name': product_name, + 'product_uom_id': product_exist.uom_po_id.id, + 'price_unit': unit_price, + 'discount': discount_percent, + }) + + # invoice_line = invoice_line_obj.with_context(ctx).new(line_data) + # invoice_line.with_context(ctx)._onchange_product_id() + # line_data = invoice_line._convert_to_write({name: invoice_line[name] for name in invoice_line._cache}) + line_data.update({ + 'tax_ids': [(6, 0, tax_ids)], + 'quantity': qty or 1, + 'price_unit': unit_price, + }) + move_lines.append((0, 0, line_data)) + # invoice_line_obj.create(line_data) + + if move_lines: + invoice_vals.update({'invoice_line_ids': move_lines}) + if 'line_ids' in invoice_vals: + invoice_vals.pop('line_ids') + invoice_exist = invoice_obj.with_context(ctx).create(invoice_vals) + # invoice_exist.compute_taxes() + action = self.env.ref('account.action_move_in_refund_type').sudo() + result = action.read()[0] + res = self.env.ref('account.view_move_form', False).sudo() + result['views'] = [(res and res.id or False, 'form')] + result['res_id'] = invoice_exist.id + return result + + @api.model + def get_or_create_product(self, default_code, product_name, clave_unidad, unit_price, clave_producto, sale_ok=True, purchase_ok=False): + product_exist = False + product_obj = self.env['product.product'] + param_obj = self.env['ir.config_parameter'].sudo() + # buscar_producto_por_clave_sat = self.env['ir.config_parameter'].sudo().get_param('l10n_mx_sat_sync_itadmin_ee.buscar_producto_por_clave_sat') + product_types = dict(product_obj._fields.get('type')._description_selection(product_obj.env)) + product_type_default = self.env['ir.config_parameter'].sudo().get_param('l10n_mx_sat_sync_itadmin_ee.product_type_default') + p_supplierinfo = self.env['product.supplierinfo'] + + if default_code: + product_exist = product_obj.search([('default_code', '=', default_code)], limit=1) + if not product_exist: + supplierinfo_exist = p_supplierinfo.search([('product_code', '=', default_code)], limit=1) + if supplierinfo_exist.product_tmpl_id: + product_exist = supplierinfo_exist.product_tmpl_id.product_variant_id + if not product_exist: + product_exist = product_obj.search([('name', '=', product_name)], limit=1) + #if buscar_producto_por_clave_sat and not product_exist: + # product_exist = product_obj.search([('clave_producto', '=', clave_producto)], limit=1) + if not product_exist and self.si_producto_no_tiene_codigo == 'Buscar manual': + product_exist = self.product_id + if not product_exist: + um_descripcion = self.env['uom.uom'].search([('unspsc_code_id.code','=',clave_unidad)], limit=1) + sat_code = self.env['product.unspsc.code'].search([('code','=',clave_producto)], limit=1) + if not um_descripcion: + raise UserError("No tiene configurada la unidad de medida %s. Por favor configure la unidad de medida primero"%(clave_unidad)) + if not sat_code: + raise UserError("No tiene configurada la clave del SAT %s. Por favor configure la clave primero"%(clave_producto)) + product_vals = {'default_code':default_code, 'name':product_name, 'standard_price' : unit_price, 'uom_id' : um_descripcion.id, 'unspsc_code_id' : sat_code.id, 'uom_po_id' : um_descripcion.id} + if product_type_default: + product_vals.update({'type': product_type_default}) + elif 'product' in product_types: + product_vals.update({'type': 'product'}) + product_vals.update({'sale_ok': sale_ok, 'purchase_ok': purchase_ok}) + product_exist = product_obj.create(product_vals) + + return product_exist + + @api.model + def get_tax_from_codes(self, taxes,tax_type,no_imp_tras): + tax_codes = {'001' : 'ISR', '002' : 'IVA', '003' : 'IEPS'} + tax_obj = self.env['account.tax'] + tax_ids = [] + if taxes: + k = 0 + for tax in taxes: + if tax.get('@TasaOCuota'): + if k < no_imp_tras: + amount_tasa = float(tax.get('@TasaOCuota'))*100 + else: + amount_tasa = float(tax.get('@TasaOCuota'))*-100 + tasa = str(amount_tasa) + else: + tasa = str(0) + tax_exist = tax_obj.search([('type_tax_use','=',tax_type), ('l10n_mx_tax_type','=',tax.get('@TipoFactor')), ('amount', '=', tasa), ('company_id','=',self.env.company.id)],limit=1) + if not tax_exist: + raise UserError("La factura contiene impuestos que no han sido configurados. Por favor configure los impuestos primero") + tax_ids.append(tax_exist.id) + k = k+1 + return tax_ids + + def import_sale_order(self, file_content): + file_content = base64.b64decode(file_content) + file_content = file_content.replace(b'cfdi:', b'') + file_content = file_content.replace(b'tfd:', b'') + try: + data = json.dumps(xmltodict.parse(file_content)) + data = json.loads(data) + except Exception as e: + data = {} + raise UserError(str(e)) + + data = CaselessDictionary(data) + data = convert_to_special_dict(data) + + sale_obj = self.env['sale.order'] + sale_line_obj = self.env['sale.order.line'] + # product_obj = self.env['product.product'] + + tax_obj = self.env['account.tax'] + # vendor_data = data.get('Comprobante',{}).get('Emisor',{}) + partner_data = data.get('Comprobante', {}).get('Receptor', {}) + order_line_data = data.get('Comprobante', {}).get('Conceptos', {}).get('Concepto', []) + if type(order_line_data) != list: + order_line_data = [order_line_data] + date_order = data.get('Comprobante', {}).get('@Fecha') + receptor_data = data.get('Comprobante', {}).get('Receptor', {}) + + partner = self.create_update_partner(partner_data) + order_vals = { + 'partner_id':partner.id, + #'forma_pago':data.get('Comprobante',{}).get('@FormaPago',{}), + #'methodo_pago':data.get('Comprobante',{}).get('@MetodoPago',{}), + #'uso_cfdi':receptor_data.get('@UsoCFDI'), + 'company_id' : self.env.company.id, + } + sale_order = sale_obj.new(order_vals) + sale_order.onchange_partner_id() + order_vals = sale_order._convert_to_write({name: sale_order[name] for name in sale_order._cache}) + order_vals.update({'date_order': parse(date_order).strftime(DEFAULT_SERVER_DATETIME_FORMAT), }) + + currency_code = data.get('Comprobante', {}).get('@Moneda', 'MXN') + currency = self.env['res.currency'].search([('name', '=', currency_code)], limit=1) + if not currency: + currency = self.env['res.currency'].with_context(active_test=False).search([('name', '=', currency_code)],limit=1) + if currency: + currency.write({'active': True}) + if currency: + pricelist = self.env['product.pricelist'].search([('currency_id', '=', currency.id)], limit=1) + if not pricelist: + pricelist = self.env['product.pricelist'].create({'name':'Public Pricelist : '+currency.name,'currency_id':currency.id}) + order_vals.update({'pricelist_id':pricelist.id}) + + sale_order_exist = sale_obj.create(order_vals) + + for line in order_line_data: + product_name = line.get('@Descripcion') + discount_amount = safe_eval(line.get('@Descuento', '0.0')) + unit_price = safe_eval(line.get('@ValorUnitario', '0.0')) + default_code = line.get('@NoIdentificacion') + qty = safe_eval(line.get('@Cantidad', '1.0')) + clave_unidad = line.get('@ClaveUnidad') + clave_producto = line.get('@ClaveProdServ') + taxes = line.get('Impuestos', {}).get('Traslados', {}).get('Traslado') + tax_ids = [] + if taxes: + if type(taxes) != list: + taxes = [taxes] + else: + taxes = [] + no_imp_tras = len(taxes) + if line.get('Impuestos', {}).get('Retenciones', {}): + other_taxes = line.get('Impuestos', {}).get('Retenciones', {}).get('Retencion') + if type(other_taxes) != list: + other_taxes = [other_taxes] + taxes.extend(other_taxes) + if taxes: + if type(taxes) != list: + taxes = [taxes] + tax_ids = self.get_tax_from_codes(taxes,'sale', no_imp_tras) + + product_exist = self.get_or_create_product(default_code, product_name, clave_unidad, unit_price, clave_producto, sale_ok=True, purchase_ok=False) + + if discount_amount: + discount_percent = discount_amount * 100.0 / (unit_price * qty) + else: + discount_percent = 0.0 + + line_data = { + 'order_id': sale_order_exist.id, + 'product_id': product_exist.id, + 'name': product_name, + 'product_uom': product_exist.uom_id.id, + 'price_unit': unit_price, + 'discount': discount_percent, + } + sale_line = sale_line_obj.new(line_data) + sale_line.product_id_change() + line_data = sale_line._convert_to_write({name: sale_line[name] for name in sale_line._cache}) + if taxes: + line_data.update({ + 'tax_id': [(6, 0, tax_ids)], + 'product_uom_qty': qty or 1, + 'price_unit': unit_price, + }) + else: + line_data.update({ + 'tax_id': [], + 'product_uom_qty': qty or 1, + 'price_unit': unit_price, + }) + sale_line_obj.create(line_data) + + if sale_order_exist.state == 'draft': + action = self.env.ref('sale.action_quotations').sudo() + else: + action = self.env.ref('sale.action_orders').sudo() + result = action.read()[0] + + res = self.env.ref('sale.view_order_form', False).sudo() + result['views'] = [(res and res.id or False, 'form')] + result['res_id'] = sale_order_exist.id + return result + + def import_purchase_order(self, file_content): + file_content = base64.b64decode(file_content) + file_content = file_content.replace(b'cfdi:', b'') + file_content = file_content.replace(b'tfd:', b'') + try: + data = json.dumps(xmltodict.parse(file_content)) # ,force_list=('Concepto','Traslado',) + data = json.loads(data) + except Exception as e: + data = {} + raise UserError(str(e)) + + data = CaselessDictionary(data) + data = convert_to_special_dict(data) + + purchase_obj = self.env['purchase.order'] + purchase_line_obj = self.env['purchase.order.line'] + + # tax_obj = self.env['account.tax'] + vendor_data = data.get('Comprobante', {}).get('Emisor', {}) + order_line_data = data.get('Comprobante', {}).get('Conceptos', {}).get('Concepto', []) + if type(order_line_data) != list: + order_line_data = [order_line_data] + date_order = data.get('Comprobante', {}).get('@Fecha') + vendor_reference = data.get('Comprobante', {}).get('@Serie', '') + data.get('Comprobante', {}).get('@Folio', '') + # receptor_data = data.get('Comprobante', {}).get('Receptor', {}) + timbrado_data = data.get('Comprobante', {}).get('Complemento', {}).get('TimbreFiscalDigital', {}) + + purchase_uuid = timbrado_data.get('@UUID') + if purchase_uuid != '': + purchase_order_exist = purchase_obj.search([('l10n_mx_edi_cfdi_uuid_cusom','=',purchase_uuid.lower())],limit=1) + if not purchase_order_exist: + purchase_order_exist = purchase_obj.search([('l10n_mx_edi_cfdi_uuid_cusom','=',purchase_uuid.upper())],limit=1) + if purchase_order_exist: + raise UserError("Factura ya existente con ese UUID %s" % (purchase_uuid)) + + if vendor_reference != '': + purchase_order_exist = purchase_obj.search([('partner_ref','=',vendor_reference)],limit=1) + if purchase_order_exist: + vendor_reference = '' + + vendor = self.create_update_partner(vendor_data, is_customer=False, is_supplier=True) + order_vals = { + 'partner_id':vendor.id, + 'partner_ref':vendor_reference, + 'l10n_mx_edi_cfdi_uuid_cusom':timbrado_data.get('@UUID'), + #'forma_pago':data.get('Comprobante',{}).get('@FormaPago',{}), + #'methodo_pago':data.get('Comprobante',{}).get('@MetodoPago',{}), + #'uso_cfdi':receptor_data.get('@UsoCFDI'), + #'tipo_comprobante': data.get('Comprobante',{}).get('@TipoDeComprobante'), + #'estado_factura': 'factura_correcta', + #'tipocambio': data.get('Comprobante',{}).get('@TipoCambio'), + #'currency_id.name': data.get('Comprobante',{}).get('@Moneda'), + #'numero_cetificado': timbrado_data.get('@NoCertificadoSAT'), + #'fecha_certificacion': timbrado_data.get('@FechaTimbrado') and parse(timbrado_data.get('@FechaTimbrado')).strftime(DEFAULT_SERVER_DATETIME_FORMAT) or False, + #'selo_digital_cdfi': timbrado_data.get('@SelloCFD'), + #'selo_sat': timbrado_data.get('@SelloSAT'), + 'company_id' : self.env.company.id, + } + purchase_order = purchase_obj.new(order_vals) + purchase_order.onchange_partner_id() + order_vals = purchase_order._convert_to_write({name: purchase_order[name] for name in purchase_order._cache}) + order_vals.update({'date_order':parse(date_order).strftime(DEFAULT_SERVER_DATETIME_FORMAT),}) + purchase_order_exist = purchase_obj.create(order_vals) + + for line in order_line_data: + product_name = line.get('@Descripcion') + discount_amount = safe_eval(line.get('@Descuento', '0.0')) + unit_price = safe_eval(line.get('@ValorUnitario', '0.0')) + default_code = line.get('@NoIdentificacion') + qty = safe_eval(line.get('@Cantidad', '1.0')) + clave_unidad = line.get('@ClaveUnidad') + clave_producto = line.get('@ClaveProdServ') + taxes = line.get('Impuestos', {}).get('Traslados', {}).get('Traslado') + tax_ids = [] + if taxes: + if type(taxes) != list: + taxes = [taxes] + else: + taxes = [] + no_imp_tras = len(taxes) + if line.get('Impuestos', {}).get('Retenciones', {}): + other_taxes = line.get('Impuestos', {}).get('Retenciones', {}).get('Retencion') + if type(other_taxes) != list: + other_taxes = [other_taxes] + + taxes.extend(other_taxes) + if taxes: + if type(taxes) != list: + taxes = [taxes] + tax_ids = self.get_tax_from_codes(taxes,'purchase',no_imp_tras) + + product_exist = self.get_or_create_product(default_code, product_name, clave_unidad, unit_price, clave_producto,sale_ok=False, purchase_ok=True) + + if discount_amount: + discount_percent = discount_amount * 100.0 / (unit_price * qty) + else: + discount_percent = 0.0 + + line_data = { + 'order_id': purchase_order_exist.id, + 'product_id': product_exist.id, + 'name': product_name, + 'product_uom': product_exist.uom_po_id.id, + 'price_unit': unit_price, + 'discount':discount_percent, + } + purchase_line = purchase_line_obj.new(line_data) + purchase_line.onchange_product_id() + line_data = purchase_line._convert_to_write({name: purchase_line[name] for name in purchase_line._cache}) + if taxes: + line_data.update({ + 'taxes_id': [(6, 0, tax_ids)], + 'product_qty': qty or 1, + 'price_unit': unit_price, + }) + else: + line_data.update({ + 'taxes_id': [], + 'product_qty': qty or 1, + 'price_unit': unit_price, + }) + purchase_line_obj.create(line_data) + + if purchase_order_exist.state == 'draft': + action = self.env.ref('purchase.purchase_rfq').sudo() + else: + action = self.env.ref('purchase.purchase_form_action').sudo() + result = action.read()[0] + + res = self.env.ref('purchase.purchase_order_form', False).sudo() + result['views'] = [(res and res.id or False, 'form')] + result['res_id'] = purchase_order_exist.id + return result diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/cfdi_invoice.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/cfdi_invoice.xml new file mode 100644 index 0000000..188e3fd --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/cfdi_invoice.xml @@ -0,0 +1,26 @@ + + + + + Import Invoice from Attachment + cfdi.invoice.attachment + +
+ + + + + + + + + +
+
+
+
+
+
+
diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/descarga_x_dia_wizard.py b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/descarga_x_dia_wizard.py new file mode 100644 index 0000000..1c315aa --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/descarga_x_dia_wizard.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +from odoo import models,fields, api +from odoo.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_DATETIME_FORMAT +from datetime import datetime + +class DescargaXDiaWizard(models.TransientModel): + _name ='descarga.x.dia.wizard' + _description = 'DescargaXDiaWizard' + + start_date = fields.Date("Fecha de inicio") + end_date = fields.Date("Fecha Final") + + def download_cfdi_invoices_btw_two_dates(self): + start_date = self.start_date.strftime(DEFAULT_SERVER_DATE_FORMAT) + start_date += ' 00:00:00' + start_date = datetime.strptime(start_date,DEFAULT_SERVER_DATETIME_FORMAT) + + end_date = self.end_date.strftime(DEFAULT_SERVER_DATE_FORMAT) + end_date += ' 23:59:59' + end_date = datetime.strptime(end_date,DEFAULT_SERVER_DATETIME_FORMAT) + if self.env['ir.config_parameter'].sudo().get_param('l10n_mx_sat_sync_itadmin_ee.download_type') == 'API': + self.env.company.sudo().download_cfdi_invoices_api(start_date, end_date) + else: + self.env.company.sudo().download_cfdi_invoices_web(start_date, end_date) + return True diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/descarga_x_dia_wizard.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/descarga_x_dia_wizard.xml new file mode 100644 index 0000000..d71c428 --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/descarga_x_dia_wizard.xml @@ -0,0 +1,27 @@ + + + + + descarga.x.dia.wizard.form + descarga.x.dia.wizard + +
+ + + + + + + + + +
+
+
+
+
+ +
+
\ No newline at end of file diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/import_invoice_process_message.py b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/import_invoice_process_message.py new file mode 100644 index 0000000..f2cd55a --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/import_invoice_process_message.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +from odoo import models,fields,api + +class ImportInvoiceProcessMessage(models.TransientModel): + _name ='import.invoice.process.message' + _description = 'ImportInvoiceProcessMessage' + + name = fields.Char("Name") + + + def show_created_invoices(self): + create_invoice_ids = self._context.get('create_invoice_ids',[]) + action = self.env.ref('account.action_move_in_invoice_type').sudo() + result = action.read()[0] + result['context'] = {'type': 'in_invoice'} + result['domain'] = "[('id', 'in', " + str(create_invoice_ids) + ")]" + return result + + @api.model + def get_view(self, view_id=None, view_type='form', **options): + res = super().get_view(view_id, view_type, **options) + if view_type == 'form': + context = self._context + if context.get('existed_attachment'): + res['arch'] = res['arch'].replace("existed_attachment_content", context.get('existed_attachment')) + else: + res['arch'] = res['arch'].replace("existed_attachment_content", '') + if context.get('not_imported_attachment'): + res['arch'] = res['arch'].replace("not_imported_attachment_content", + context.get('not_imported_attachment')) + else: + res['arch'] = res['arch'].replace("not_imported_attachment_content", '') + if context.get('imported_attachment'): + res['arch'] = res['arch'].replace("imported_attachment_content", context.get('imported_attachment')) + else: + res['arch'] = res['arch'].replace("imported_attachment_content", '') + return res \ No newline at end of file diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/import_invoice_process_message.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/import_invoice_process_message.xml new file mode 100644 index 0000000..bfa7a26 --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/import_invoice_process_message.xml @@ -0,0 +1,28 @@ + + + + + Mensaje de importaciones + import.invoice.process.message + +
+

XML existentes:

+

existed_attachment_content

+ +

XML no importados:

+

not_imported_attachment_content

+ +

XML importados:

+

imported_attachment_content

+ +
+ +
+
+
+
+ +
+
diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/reconcile_vendor_cfdi_xml_bill.py b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/reconcile_vendor_cfdi_xml_bill.py new file mode 100644 index 0000000..00557bf --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/reconcile_vendor_cfdi_xml_bill.py @@ -0,0 +1,157 @@ +# -*- coding: utf-8 -*- +from odoo import models,fields,api +import base64 +#from lxml import etree +import json, xmltodict +#from .cfdi_invoice import convert_to_special_dict +from odoo.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_DATETIME_FORMAT +from dateutil.parser import parse +from odoo.exceptions import UserError + +#from .special_dict import CaselessDictionary +from ...l10n_mx_sat_sync_itadmin_ee.models.special_dict import CaselessDictionary + +import logging +_logger = logging.getLogger(__name__) + +def convert_to_special_dict(d): + for k, v in d.items(): + if isinstance(v, dict): + d.__setitem__(k, convert_to_special_dict(CaselessDictionary(v))) + else: + d.__setitem__(k, v) + return d + +class ReconcileVendorCfdiXmlBill(models.TransientModel): + _name ='reconcile.vendor.cfdi.xml.bill' + _description = 'ReconcileVendorCfdiXmlBill' + + typo_de_combante = fields.Selection([('I','Facturas de clientes'), + ('SI', 'Facturas de proveedor'), + ('P', 'Pagos de clientes'), + ('SP', 'Pagos de proveedor'), + ('E', 'Notas de crédito clientes'), + ('SE', 'Notas de crédito proveedor'), + ], string='Tipo de Comprobante') + + def action_reconcile(self): + #selected_att_ids = self._context.get('select_ids',[]) + selected_att_ids = self._context.get('active_ids') + + if not selected_att_ids or self._context.get('active_model','')!='ir.attachment': + return + + attachments = self.env['ir.attachment'].sudo().search([('id','in', selected_att_ids), ('creado_en_odoo','!=',True), ('cfdi_type','=', self.typo_de_combante)]) + + invoice_obj = self.env['account.move'].sudo() + payment_obj = self.env['account.payment'].sudo() + reconcile_obj = self.env['xml.invoice.reconcile'].sudo() + + created_ids = [] + invoice_type, payment_type = '', '' + if self.typo_de_combante in ['I','P']: + element_tag = 'Receptor' + invoice_type = 'out_invoice' + payment_type = 'inbound' + elif self.typo_de_combante in ['SI','SP']: + element_tag = 'Emisor' + invoice_type = 'in_invoice' + payment_type = 'outbound' + elif self.typo_de_combante in ['E']: + element_tag = 'Receptor' + invoice_type = 'out_refund' + payment_type = 'outbound' + elif self.typo_de_combante in ['SE']: + element_tag = 'Emisor' + invoice_type = 'in_refund' + payment_type = 'inbound' + for attachment in attachments: + file_content = base64.b64decode(attachment.datas) + if b'xmlns:schemaLocation' in file_content: + file_content = file_content.replace(b'xmlns:schemaLocation', b'xsi:schemaLocation') + file_content = file_content.replace(b'cfdi:',b'') + file_content = file_content.replace(b'tfd:',b'') + try: + data = json.dumps(xmltodict.parse(file_content)) #,force_list=('Concepto','Traslado',) + data = json.loads(data) + except Exception as e: + data = {} + raise UserError(str(e)) + + data = CaselessDictionary(data) + data = convert_to_special_dict(data) + + invoice_date = data.get('Comprobante',{}).get('@Fecha') + Complemento = data.get('Comprobante',{}).get('Complemento',{}) + version = data.get('Comprobante',{}).get('@Version') + + if self.typo_de_combante in ['P','SP']: + total = 0 + if version == '4.0': + total = eval(Complemento.get('pago20:Pagos').get('pago20:Totales').get('@MontoTotalPagos','0.0')) + else: + try: + total = eval(Complemento.get('pago10:Pagos').get('pago10:Pago').get('@Monto','0.0')) + except Exception as e: + for payment in Complemento.get('pago10:Pagos').get('pago10:Pago'): + total += float(payment.get('@Monto','0.0')) + else: + total = eval(data.get('Comprobante',{}).get('@Total','0.0')) + + cust_data = data.get('Comprobante',{}).get(element_tag,{}) + uso_data = data.get('Comprobante',{}).get('Receptor',{}) + client_rfc = cust_data.get('@rfc') + client_name = cust_data.get('@nombre') + + timbrado_data = Complemento.get('TimbreFiscalDigital',{}) + + vals = { + 'invoice_type': invoice_type, + 'payment_type': payment_type, + 'client_name' : client_name, + 'client_rfc' : client_rfc, + 'date' : invoice_date, #tree_attrib_dict.get('fecha'), + 'amount' : total, + 'attachment_id' : attachment.id, + 'tipo_comprobante': data.get('Comprobante',{}).get('@TipoDeComprobante',{}), + 'folio_fiscal':timbrado_data.get('@UUID'), + 'forma_pago': data.get('Comprobante',{}).get('@FormaPago',''), +# 'methodo_pago': data.get('Comprobante',{}).get('@MetodoPago',''), + 'numero_cetificado': timbrado_data.get('@NoCertificadoSAT'), + 'fecha_certificacion': timbrado_data.get('@FechaTimbrado'), + 'selo_digital_cdfi': timbrado_data.get('@SelloCFD'), + 'selo_sat': timbrado_data.get('@SelloSAT'), + 'tipocambio': data.get('Comprobante',{}).get('@TipoCambio'), + 'moneda': data.get('Comprobante',{}).get('@Moneda'), + 'folio_factura': data.get('Comprobante',{}).get('@Folio'), + 'fecha_factura': timbrado_data.get('@FechaTimbrado') and parse(timbrado_data.get('@FechaTimbrado')).strftime(DEFAULT_SERVER_DATETIME_FORMAT) or False, + 'uso_cfdi': uso_data.get('@UsoCFDI'), + } + if self.typo_de_combante in ['P','SP']: + payments = payment_obj.search([('partner_id.vat','=',client_rfc),('amount','=',total),('payment_type','=', payment_type)]) + if payments: + payment = payments.filtered(lambda x:x.state in ['draft','sent']) + if payment: + vals.update({'payment_id':payment[0].id}) + else: + vals.update({'payment_id':payments[0].id}) + else: + invoices = invoice_obj.search([('partner_id.vat','=',client_rfc),('amount_total','=',total),('move_type','=', invoice_type)]) + if invoices: + inv = invoices.filtered(lambda x:x.state in ['open','draft']) + if inv: + vals.update({'invoice_id':inv[0].id}) + else: + vals.update({'invoice_id':invoices[0].id}) + + record = reconcile_obj.create(vals) + created_ids.append(record.id) + if self.typo_de_combante in ['P','SP']: + action_id = 'l10n_mx_sat_sync_itadmin_ee.action_xml_payment_reconcile_view' + else: + action_id = 'l10n_mx_sat_sync_itadmin_ee.action_xml_invoice_reconcile_view' + + #action = self.env.ref(action_id).sudo().read()[0] + action = self.env['ir.actions.act_window']._for_xml_id(action_id) + action['domain'] = [('id', 'in', created_ids)] + return action diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/reconcile_vendor_cfdi_xml_bill.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/reconcile_vendor_cfdi_xml_bill.xml new file mode 100644 index 0000000..c2e85a4 --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/reconcile_vendor_cfdi_xml_bill.xml @@ -0,0 +1,21 @@ + + + + + Reconcile XML Bill + reconcile.vendor.cfdi.xml.bill + +
+ + + +
+
+
+
+
+ +
+
\ No newline at end of file diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/xml_invoice_reconcile.py b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/xml_invoice_reconcile.py new file mode 100644 index 0000000..15dabcb --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/xml_invoice_reconcile.py @@ -0,0 +1,130 @@ +# -*- coding: utf-8 -*- +from odoo import models,fields, api, _ +from odoo.exceptions import UserError +import base64 + +class XMLInvoiceReconcile(models.TransientModel): + _name ='xml.invoice.reconcile' + _description = 'XMLInvoiceReconcile' + + attachment_id = fields.Many2one('ir.attachment',"Xml Attachment") + invoice_id = fields.Many2one('account.move',"Invoice") + payment_id = fields.Many2one('account.payment',"Payment") + date = fields.Date("Date") + #partner_id = fields.Many2one("res.partner","Client") + client_name = fields.Char("Client") + amount = fields.Float("Amount") + reconcilled = fields.Boolean("Is Reconcilled ?") + moneda = fields.Char("Moneda") + + folio_fiscal = fields.Char("Folio Fiscal") + folio_factura = fields.Char("Folio factura") + forma_pago = fields.Selection( + selection=[('01', '01 - Efectivo'), + ('02', '02 - Cheque nominativo'), + ('03', '03 - Transferencia electrónica de fondos'), + ('04', '04 - Tarjeta de Crédito'), + ('05', '05 - Monedero electrónico'), + ('06', '06 - Dinero electrónico'), + ('08', '08 - Vales de despensa'), + ('12', '12 - Dación en pago'), + ('13', '13 - Pago por subrogación'), + ('14', '14 - Pago por consignación'), + ('15', '15 - Condonación'), + ('17', '17 - Compensación'), + ('23', '23 - Novación'), + ('24', '24 - Confusión'), + ('25', '25 - Remisión de deuda'), + ('26', '26 - Prescripción o caducidad'), + ('27', '27 - A satisfacción del acreedor'), + ('28', '28 - Tarjeta de débito'), + ('29', '29 - Tarjeta de servicios'), + ('30', '30 - Aplicación de anticipos'), + ('31', '31 - Intermediario pagos'), + ('99', '99 - Por definir'),], + string=_('Forma de pago'), + ) + uso_cfdi = fields.Selection( + selection=[('G01', _('Adquisición de mercancías')), + ('G02', _('Devoluciones, descuentos o bonificaciones')), + ('G03', _('Gastos en general')), + ('I01', _('Construcciones')), + ('I02', _('Mobiliario y equipo de oficina por inversiones')), + ('I03', _('Equipo de transporte')), + ('I04', _('Equipo de cómputo y accesorios')), + ('I05', _('Dados, troqueles, moldes, matrices y herramental')), + ('I06', _('Comunicacion telefónica')), + ('I07', _('Comunicación Satelital')), + ('I08', _('Otra maquinaria y equipo')), + ('D01', _('Honorarios médicos, dentales y gastos hospitalarios')), + ('D02', _('Gastos médicos por incapacidad o discapacidad')), + ('D03', _('Gastos funerales')), + ('D04', _('Donativos')), + ('D07', _('Primas por seguros de gastos médicos')), + ('D08', _('Gastos de transportación escolar obligatoria')), + ('D10', _('Pagos por servicios educativos (colegiaturas)')), + ('S01', _('Sin efectos fiscales')), + ('CP01', _('Pago')), + ('CN01', _('Nomina')), + ('P01', _('Por definir')),], + string=_('Uso CFDI (cliente)'), + ) + + numero_cetificado = fields.Char("Numero cetificado") + fecha_certificacion = fields.Char("Fecha certificacion") + selo_digital_cdfi = fields.Char("Sello digital CFDI") + selo_sat = fields.Char("Sello SAT") + tipocambio = fields.Char("Tipo cambio") + tipo_comprobante = fields.Selection( + selection=[('I', 'Ingreso'), + ('E', 'Egreso'), + ('P', 'Pago'), + ('N', 'Nomina'), + ('T', 'Traslado'),], + string=_('Tipo de comprobante'), + ) + fecha_factura = fields.Datetime(string=_('Fecha Factura')) + number_folio = fields.Char(string=_('Folio')) + invoice_type = fields.Char("Invoice Type") + payment_type = fields.Char("Payment Type") + client_rfc = fields.Char("RFC") + + def action_reconcile(self): + self.ensure_one() + invoice = self.invoice_id + payment = self.payment_id + if not invoice and not payment: + raise UserError("Seleccionar primero la factura/pago y posteriormente reconciliar con el XML.") + + if invoice: + if self.env['ir.config_parameter'].sudo().get_param('l10n_mx_sat_sync_itadmin_ee.tipo_conciliacion') == '01': + if invoice.amount_total != self.amount: + raise UserError("El total de la factura y el XML son distintos") + else: + diff = self.env['ir.config_parameter'].sudo().get_param('l10n_mx_sat_sync_itadmin_ee.rango') + if (invoice.amount_total < (self.amount - float(diff))) or (invoice.amount_total > (self.amount + float(diff))): + raise UserError("El total de la factura no está dentro del rango permitido") + invoice.write({'l10n_mx_edi_cfdi_uuid': self.folio_fiscal, + 'l10n_mx_edi_usage' : self.uso_cfdi if self.uso_cfdi != 'S01' else 'P01', + #'l10n_mx_edi_cfdi_name' : self.attachment_id.store_fname, + #'l10n_mx_edi_cfdi_certificate_id' : self.numero_cetificado, + }) + self.attachment_id.write({'creado_en_odoo':True, 'invoice_ids':[(6,0, [invoice.id])], 'res_id': invoice.id, 'res_model': invoice._name,}) +# _logger.info("Factura conciliada") + invoice._compute_cfdi_uuid() + self.write({'reconcilled':True}) + if payment: + if self.env['ir.config_parameter'].sudo().get_param('l10n_mx_sat_sync_itadmin_ee.tipo_conciliacion') == '01': + if payment.amount_total != self.amount: + raise UserError("El total de la factura y el XML son distintos") + else: + diff = self.env['ir.config_parameter'].sudo().get_param('l10n_mx_sat_sync_itadmin_ee.rango') + if payment.amount_total < self.amount - float(diff) or payment.amount_total > self.amount + float(diff): + raise UserError("El total de la factura no está dentro del rango permitido") + payment.write({'l10n_mx_edi_cfdi_uuid': self.folio_fiscal, + #'l10n_mx_edi_cfdi_name' : self.attachment_id.store_fname, + }) + self.attachment_id.write({'creado_en_odoo':True, 'payment_ids':[(6,0, [payment.id])], 'res_id': payment.id, 'res_model': payment._name,}) +# _logger.info("Factura reconciliada") + self.write({'reconcilled':True}) + return diff --git a/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/xml_invoice_reconcile_view.xml b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/xml_invoice_reconcile_view.xml new file mode 100644 index 0000000..80c4a6b --- /dev/null +++ b/Addons/custom/l10n_mx_sat_sync_itadmin_ee/wizard/xml_invoice_reconcile_view.xml @@ -0,0 +1,55 @@ + + + + + Reconcile XML + xml.invoice.reconcile + + + + + + + + + + + +
+ + + + + + + +