diff --git a/.copier-answers.yml b/.copier-answers.yml index bdbc46dd7..7bd943191 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,11 +1,13 @@ # Do NOT update manually; changes here will be overwritten by Copier -_commit: v1.0.2 +_commit: v1.3.4 _src_path: gh:oca/oca-addons-repo-template +ci: Travis dependency_installation_mode: PIP +generate_requirements_txt: true include_wkhtmltopdf: false odoo_version: 14.0 rebel_module_groups: [] -repo_description: "TODO: add repo description." +repo_description: 'TODO: add repo description.' repo_name: reporting-engine repo_slug: reporting-engine travis_apt_packages: [] diff --git a/.eslintrc.yml b/.eslintrc.yml index 88f2881b4..16a185f1b 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -1,5 +1,6 @@ env: browser: true + es6: true # See https://github.com/OCA/odoo-community.org/issues/37#issuecomment-470686449 parserOptions: @@ -14,7 +15,7 @@ globals: moment: readonly odoo: readonly openerp: readonly - Promise: readonly + owl: readonly # Styling is handled by Prettier, so we only need to enable AST rules; # see https://github.com/OCA/maintainer-quality-tools/pull/618#issuecomment-558576890 diff --git a/.flake8 b/.flake8 index 44ed868f7..e397e8ed4 100644 --- a/.flake8 +++ b/.flake8 @@ -1,5 +1,5 @@ [flake8] -max-line-length = 80 +max-line-length = 88 max-complexity = 16 # B = bugbear # B9 = bugbear opinionated (incl line length) @@ -8,3 +8,5 @@ select = C,E,F,W,B,B9 # E501: flake8 line length (covered by bugbear B950) # W503: line break before binary operator (black behaviour) ignore = E203,E501,W503 +per-file-ignores= + __init__.py:F401 diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml new file mode 100644 index 000000000..282a1fa70 --- /dev/null +++ b/.github/workflows/pre-commit.yml @@ -0,0 +1,17 @@ +name: pre-commit + +on: + pull_request: + push: + +jobs: + pre-commit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + # The pylint-odoo version we use here does not support python 3.10 + # https://github.com/OCA/oca-addons-repo-template/issues/80 + python-version: "3.9" + - uses: pre-commit/action@v2.0.0 diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 000000000..1693a1253 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,69 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: "0 12 * * 0" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - name: Stale PRs and issues policy + uses: actions/stale@v4 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + # General settings. + ascending: true + remove-stale-when-updated: true + # Pull Requests settings. + # 120+30 day stale policy for PRs + # * Except PRs marked as "no stale" + days-before-pr-stale: 120 + days-before-pr-close: 30 + exempt-pr-labels: "no stale" + stale-pr-label: "stale" + stale-pr-message: > + There hasn't been any activity on this pull request in the past 4 months, so + it has been marked as stale and it will be closed automatically if no + further activity occurs in the next 30 days. + + If you want this PR to never become stale, please ask a PSC member to apply + the "no stale" label. + # Issues settings. + # 180+30 day stale policy for open issues + # * Except Issues marked as "no stale" + days-before-issue-stale: 180 + days-before-issue-close: 30 + exempt-issue-labels: "no stale,needs more information" + stale-issue-label: "stale" + stale-issue-message: > + There hasn't been any activity on this issue in the past 6 months, so it has + been marked as stale and it will be closed automatically if no further + activity occurs in the next 30 days. + + If you want this issue to never become stale, please ask a PSC member to + apply the "no stale" label. + + # 15+30 day stale policy for issues pending more information + # * Issues that are pending more information + # * Except Issues marked as "no stale" + - name: Needs more information stale issues policy + uses: actions/stale@v4 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + ascending: true + only-labels: "needs more information" + exempt-issue-labels: "no stale" + days-before-stale: 15 + days-before-close: 30 + days-before-pr-stale: -1 + days-before-pr-close: -1 + remove-stale-when-updated: true + stale-issue-label: "stale" + stale-issue-message: > + This issue needs more information and there hasn't been any activity + recently, so it has been marked as stale and it will be closed automatically + if no further activity occurs in the next 30 days. + + If you think this is a mistake, please ask a PSC member to remove the "needs + more information" label. diff --git a/.isort.cfg b/.isort.cfg index 7683badfa..0ec187efd 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -10,3 +10,4 @@ known_odoo=odoo known_odoo_addons=odoo.addons sections=FUTURE,STDLIB,THIRDPARTY,ODOO,ODOO_ADDONS,FIRSTPARTY,LOCALFOLDER default_section=THIRDPARTY +ensure_newline_before_comments = True diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b1dce7938..653698e4a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,6 +4,8 @@ exclude: | # END NOT INSTALLABLE ADDONS # Files and folders generated by bots, to avoid loops ^setup/|/static/description/index\.html$| + # We don't want to mess with tool-generated files + .svg$|/tests/([^/]+/)?cassettes/|^.copier-answers.yml$|^.github/| # Maybe reactivate this when all README files include prettier ignore tags? ^README\.md$| # Library files can have extraneous formatting (even minimized) @@ -26,28 +28,38 @@ repos: language: fail files: "\\.rej$" - repo: https://github.com/oca/maintainer-tools - rev: 2c66e72 + rev: ab1d7f6 hooks: # update the NOT INSTALLABLE ADDONS section above - id: oca-update-pre-commit-excluded-addons + - id: oca-fix-manifest-website + args: ["https://github.com/OCA/reporting-engine"] - repo: https://github.com/myint/autoflake rev: v1.4 hooks: - id: autoflake - args: ["-i", "--ignore-init-module-imports"] + args: + - --expand-star-imports + - --ignore-init-module-imports + - --in-place + - --remove-all-unused-imports + - --remove-duplicate-keys + - --remove-unused-variables - repo: https://github.com/psf/black rev: 20.8b1 hooks: - id: black - - repo: https://github.com/prettier/prettier - rev: 2.1.2 + - repo: https://github.com/pre-commit/mirrors-prettier + rev: v2.1.2 hooks: - id: prettier - name: prettier + plugin-xml + name: prettier (with plugin-xml) additional_dependencies: + - "prettier@2.1.2" - "@prettier/plugin-xml@0.12.0" args: - --plugin=@prettier/plugin-xml + files: \.(css|htm|html|js|json|jsx|less|md|scss|toml|ts|xml|yaml|yml)$ - repo: https://github.com/pre-commit/mirrors-eslint rev: v7.8.1 hooks: @@ -82,6 +94,7 @@ repos: rev: v2.7.2 hooks: - id: pyupgrade + args: ["--keep-percent-format"] - repo: https://github.com/PyCQA/isort rev: 5.5.1 hooks: @@ -91,20 +104,20 @@ repos: - --settings=. exclude: /__init__\.py$ - repo: https://github.com/acsone/setuptools-odoo - rev: 2.5.10 + rev: 2.6.0 hooks: - id: setuptools-odoo-make-default + - id: setuptools-odoo-get-requirements + args: + - --output + - requirements.txt + - --header + - "# generated from manifests external_dependencies" - repo: https://gitlab.com/PyCQA/flake8 rev: 3.8.3 hooks: - id: flake8 - name: flake8 except __init__.py - exclude: /__init__\.py$ - additional_dependencies: ["flake8-bugbear==20.1.4"] - - id: flake8 - name: flake8 only __init__.py - args: ["--extend-ignore=F401"] # ignore unused imports in __init__.py - files: /__init__\.py$ + name: flake8 additional_dependencies: ["flake8-bugbear==20.1.4"] - repo: https://github.com/PyCQA/pylint rev: pylint-2.5.3 diff --git a/.prettierrc.yml b/.prettierrc.yml index fc5f3a7c4..5b6d4b361 100644 --- a/.prettierrc.yml +++ b/.prettierrc.yml @@ -5,4 +5,4 @@ printWidth: 88 proseWrap: always semi: true trailingComma: "es5" -xmlWhitespaceSensitivity: "ignore" +xmlWhitespaceSensitivity: "strict" diff --git a/.pylintrc b/.pylintrc index acbffe7b4..e33958833 100644 --- a/.pylintrc +++ b/.pylintrc @@ -28,6 +28,7 @@ enable=anomalous-backslash-in-string, class-camelcase, dangerous-default-value, dangerous-view-replace-wo-priority, + development-status-allowed, duplicate-id-csv, duplicate-key, duplicate-xml-fields, diff --git a/.pylintrc-mandatory b/.pylintrc-mandatory index 1d979ab46..08bca3cef 100644 --- a/.pylintrc-mandatory +++ b/.pylintrc-mandatory @@ -21,6 +21,7 @@ enable=anomalous-backslash-in-string, class-camelcase, dangerous-default-value, dangerous-view-replace-wo-priority, + development-status-allowed, duplicate-id-csv, duplicate-key, duplicate-xml-fields, diff --git a/.travis.yml b/.travis.yml index 4bf007bee..562ecd3a0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,19 +13,13 @@ addons: packages: - expect-dev # provides unbuffer utility - libreoffice + - graphviz stages: - - linting - test jobs: include: - - stage: linting - name: "pre-commit" - install: pip install pre-commit - script: pre-commit run --all --show-diff-on-failure --verbose --color always - after_success: - before_install: - stage: test env: - TESTS=1 ODOO_REPO="odoo/odoo" MAKEPOT="1" @@ -41,6 +35,7 @@ install: - git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools - export PATH=${HOME}/maintainer-quality-tools/travis:${PATH} + - export WKHTMLTOPDF_VERSION=0.12.5 - travis_install_nightly script: diff --git a/README.md b/README.md index 02bbf425d..6d6716aea 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,23 @@ TODO: add repo description. [//]: # (addons) -This part will be replaced when running the oca-gen-addons-table script from OCA/maintainer-tools. +Available addons +---------------- +addon | version | maintainers | summary +--- | --- | --- | --- +[base_comment_template](base_comment_template/) | 14.0.2.0.1 | | Add conditional mako template to any reporton models that inherits comment.template. +[bi_sql_editor](bi_sql_editor/) | 14.0.1.0.0 | | BI Views builder, based on Materialized or Normal SQL Views +[bi_view_editor](bi_view_editor/) | 14.0.1.0.0 | | Graphical BI views builder for Odoo +[kpi_dashboard](kpi_dashboard/) | 14.0.1.0.0 | [![etobella](https://github.com/etobella.png?size=30px)](https://github.com/etobella) | Create Dashboards using kpis +[report_qweb_element_page_visibility](report_qweb_element_page_visibility/) | 14.0.1.0.0 | | Report Qweb Element Page Visibility +[report_qweb_encrypt](report_qweb_encrypt/) | 14.0.1.0.0 | [![kittiu](https://github.com/kittiu.png?size=30px)](https://github.com/kittiu) | Allow to encrypt qweb pdfs +[report_qweb_parameter](report_qweb_parameter/) | 14.0.1.0.0 | | Add new parameters for qweb templates in order to reduce field length and check minimal length +[report_qweb_pdf_watermark](report_qweb_pdf_watermark/) | 14.0.1.0.0 | | Add watermarks to your QWEB PDF reports +[report_wkhtmltopdf_param](report_wkhtmltopdf_param/) | 14.0.1.0.0 | | Add new parameters for a paper format to be used by wkhtmltopdf command as arguments. +[report_xlsx](report_xlsx/) | 14.0.1.0.3 | | Base module to create xlsx report +[report_xlsx_helper](report_xlsx_helper/) | 14.0.1.0.0 | | Report xlsx helpers +[report_xlsx_helper_demo](report_xlsx_helper_demo/) | 14.0.1.0.0 | | Report xlsx helpers - demo +[report_xml](report_xml/) | 14.0.1.0.1 | | Allow to generate XML reports [//]: # (end addons) diff --git a/base_comment_template/README.rst b/base_comment_template/README.rst new file mode 100644 index 000000000..50a03023a --- /dev/null +++ b/base_comment_template/README.rst @@ -0,0 +1,163 @@ +======================= +Base Comments Templates +======================= + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github + :target: https://github.com/OCA/reporting-engine/tree/14.0/base_comment_template + :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-14-0/reporting-engine-14-0-base_comment_template + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/143/14.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Add a new mixin class to define templates of comments to print on documents. +The comment templates can be defined like make templates, so you can use variables from linked models. + +Two positions are available for the comments: + +* above document lines (before_lines) +* below document lines (after_lines) + +The template are general, and can be attached to any Model and based on some domain defined in the template. +You can define one default template per Model and domain, which can be overwritten for any company and partners. +It has a priority field (smaller number = higher priority) + +In existing reports, if you add this line will get the comment template if you created one like + +* ( or without any parameter) + + +This module is the base module for following modules: + +* sale_comment_template +* purchase_comment_template +* invoice_comment_template +* stock_picking_comment_template + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +Go to *Settings > Technical > Reporting > Comment Templates* and start designing you comment templates. + +This module is the base module for following modules: + +* sale_comment_template +* purchase_comment_template +* invoice_comment_template +* stock_picking_comment_template + +Usage +===== + +#. Go to *Settings* and activate the developer mode. +#. Go to *Settings > Technical > Reporting > Comment Templates*. +#. Create a new record. +#. Define the Company the template is linked or leave default for all companies. +#. Define the Partner the template is linked or leave default for all partners. +#. Define the Model, Domain the template is linked. +#. Define the Position where the template will be printed: + + * above document lines + * below document lines + +You should have at least one template with Default field set, if you choose a Partner the template is deselected as a Default one. +If you create a new template with the same configuration (Model, Domain, Position) and set it as Default, the previous one will be deselected as a default one. + +The template is a html field which will be rendered just like a mail template, so you can use variables like ${object}, ${user}, ${ctx} to add dynamic content. + +Change the report related to the model from configuration and add a statement like: + +

+ + + +

+ +

+ + + +

+ +You should always use t-if since the method returns False if no template is found. + +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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Camptocamp + +Contributors +~~~~~~~~~~~~ + +* Xavier Jimenez +* Nicolas Bessi +* Yannick Vaucher +* Guewen Baconnier +* Simone Rubino +* `DynApps `_: + + * Raf Ven + +* `Druidoo `_: + + * Iván Todorovich +* Pierre Verkest + +* `NextERP Romania `_: + + * Fekete Mihai + +* `Tecnativa `_: + + * Carlos Roca + * Víctor Martínez + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/reporting-engine `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/base_comment_template/__init__.py b/base_comment_template/__init__.py new file mode 100644 index 000000000..83e553ac4 --- /dev/null +++ b/base_comment_template/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import models diff --git a/base_comment_template/__manifest__.py b/base_comment_template/__manifest__.py new file mode 100644 index 000000000..495f53901 --- /dev/null +++ b/base_comment_template/__manifest__.py @@ -0,0 +1,21 @@ +# © 2013-2014 Nicolas Bessi (Camptocamp SA) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "Base Comments Templates", + "summary": "Add conditional mako template to any report" + "on models that inherits comment.template.", + "version": "14.0.2.0.1", + "category": "Reporting", + "website": "https://github.com/OCA/reporting-engine", + "author": "Camptocamp, Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "depends": ["base", "mail"], + "data": [ + "security/ir.model.access.csv", + "security/security.xml", + "views/base_comment_template_view.xml", + "views/res_partner_view.xml", + ], +} diff --git a/base_comment_template/i18n/am.po b/base_comment_template/i18n/am.po new file mode 100644 index 000000000..a80a48785 --- /dev/null +++ b/base_comment_template/i18n/am.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/ar.po b/base_comment_template/i18n/ar.po new file mode 100644 index 000000000..8cbe441bb --- /dev/null +++ b/base_comment_template/i18n/ar.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "المعرف" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/base_comment_template.pot b/base_comment_template/i18n/base_comment_template.pot new file mode 100644 index 000000000..1512af7ff --- /dev/null +++ b/base_comment_template/i18n/base_comment_template.pot @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected " +"company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected " +"partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/bg.po b/base_comment_template/i18n/bg.po new file mode 100644 index 000000000..3e5318448 --- /dev/null +++ b/base_comment_template/i18n/bg.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/bs.po b/base_comment_template/i18n/bs.po new file mode 100644 index 000000000..b3436e17d --- /dev/null +++ b/base_comment_template/i18n/bs.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/ca.po b/base_comment_template/i18n/ca.po new file mode 100644 index 000000000..baada42d2 --- /dev/null +++ b/base_comment_template/i18n/ca.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +# Marc Tormo i Bochaca , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: Marc Tormo i Bochaca , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Comentari " + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/cs.po b/base_comment_template/i18n/cs.po new file mode 100644 index 000000000..4dd45d2d2 --- /dev/null +++ b/base_comment_template/i18n/cs.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/da.po b/base_comment_template/i18n/da.po new file mode 100644 index 000000000..566649bda --- /dev/null +++ b/base_comment_template/i18n/da.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "Id" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/de.po b/base_comment_template/i18n/de.po new file mode 100644 index 000000000..2925cf14f --- /dev/null +++ b/base_comment_template/i18n/de.po @@ -0,0 +1,252 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# 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-05-16 11:59+0000\n" +"PO-Revision-Date: 2020-03-23 17:13+0000\n" +"Last-Translator: Maria Sparenberg \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.10\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "Aktiv" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Textbaustein" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "Textbausteinvorlagen" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "Unternehmen" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "Bezeichnung" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Position im Dokument" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#~ msgid "After lines" +#~ msgstr "Suffix" + +#~ msgid "Base comment template" +#~ msgstr "Textbausteinvorlage" + +#~ msgid "Before lines" +#~ msgstr "Präfix" + +#~ msgid "Comment summary" +#~ msgstr "Textbaustein-Zusammenfassung" + +#~ msgid "Conditions template" +#~ msgstr "Textbausteinvorlage" + +#~ msgid "If set, it'll only be available for this company" +#~ msgstr "" +#~ "Wenn der Haken gesetzt ist, ist die Vorlage nur das gesetzte Unternehmen " +#~ "verfügbar." + +#~ msgid "Position" +#~ msgstr "Position" diff --git a/base_comment_template/i18n/el_GR.po b/base_comment_template/i18n/el_GR.po new file mode 100644 index 000000000..a2d6f8dcf --- /dev/null +++ b/base_comment_template/i18n/el_GR.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "Κωδικός" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/en_GB.po b/base_comment_template/i18n/en_GB.po new file mode 100644 index 000000000..e3ea29f9f --- /dev/null +++ b/base_comment_template/i18n/en_GB.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Created on" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/es.po b/base_comment_template/i18n/es.po new file mode 100644 index 000000000..03bed6682 --- /dev/null +++ b/base_comment_template/i18n/es.po @@ -0,0 +1,269 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# enjolras , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-09 09:55+0000\n" +"PO-Revision-Date: 2021-02-09 11:21+0100\n" +"Last-Translator: Carlos \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: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.0.6\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "Activo" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "Archivado" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Comentario" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "Plantilla de comentario" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "Plantillas de comentarios" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "Plantillas de comentarios" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "Compañía" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "Contacto" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "Filtro de dominio" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "Modelo" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" +"Si se define, la plantilla de comentario va a estar disponible para las " +"compañías seleccionadas." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" +"Si se define, la plantilla de comentario va a estar disponible para los " +"contactos seleccionados." + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Última modificación por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Última modificación el" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "Nombre" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "Nombre de la plantilla de comentario" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "Contacto" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Posición en el documento" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "Comentarios de contactos que se pueden incluir en informes" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "Plantilla de comentario" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" +"Esta plantilla de comentarios estará disponible en estos modelos. Sólo vas a " +"ver los modelos autorizados para configurar la plantilla de comentarios." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" +"Esta plantilla de comentarios estará disponible solo para objetos que " +"satisfagan la condición" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" +"Este campo permite seleccionar la posición del comentario en los informes." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "Esta es la plantilla de texto que se insertará en los informes." + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" +"Si este modelo admite en los informes, añadir plantillas de comentarios." + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" +"base.comment.template para poner cabecera y pie de página en los informes " +"basados en las plantillas de comentarios creadas" + +#~ msgid "After lines" +#~ msgstr "Después de las líneas" + +#~ msgid "Before lines" +#~ msgstr "Antes de las líneas" + +#~ msgid "Priority" +#~ msgstr "Prioridad" + +#~ msgid "" +#~ "There are other records with same models, priority, domain and position." +#~ msgstr "" +#~ "Hay otros registros con los mismos datos en modelo, prioridad, dominio y " +#~ "posición." + +#~ msgid "the highest priority = the smallest number" +#~ msgstr "Mayor prioridad = número menor" + +#~ msgid "Comment summary" +#~ msgstr "Índice de comentarios" + +#, fuzzy +#~| msgid "Comment Templates" +#~ msgid "Conditions template" +#~ msgstr "Plantillas de comentarios" + +#~ msgid "Position" +#~ msgstr "Posició" diff --git a/base_comment_template/i18n/es_AR.po b/base_comment_template/i18n/es_AR.po new file mode 100644 index 000000000..17bbcfe44 --- /dev/null +++ b/base_comment_template/i18n/es_AR.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/es_CL.po b/base_comment_template/i18n/es_CL.po new file mode 100644 index 000000000..71ce34ab4 --- /dev/null +++ b/base_comment_template/i18n/es_CL.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/es_CO.po b/base_comment_template/i18n/es_CO.po new file mode 100644 index 000000000..2f09e60d7 --- /dev/null +++ b/base_comment_template/i18n/es_CO.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/es_CR.po b/base_comment_template/i18n/es_CR.po new file mode 100644 index 000000000..f7c060ca9 --- /dev/null +++ b/base_comment_template/i18n/es_CR.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/es_DO.po b/base_comment_template/i18n/es_DO.po new file mode 100644 index 000000000..236bacce8 --- /dev/null +++ b/base_comment_template/i18n/es_DO.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/es_EC.po b/base_comment_template/i18n/es_EC.po new file mode 100644 index 000000000..c8c8ae143 --- /dev/null +++ b/base_comment_template/i18n/es_EC.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/es_ES.po b/base_comment_template/i18n/es_ES.po new file mode 100644 index 000000000..80ca67f79 --- /dev/null +++ b/base_comment_template/i18n/es_ES.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/es_MX.po b/base_comment_template/i18n/es_MX.po new file mode 100644 index 000000000..260655b0f --- /dev/null +++ b/base_comment_template/i18n/es_MX.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/es_PE.po b/base_comment_template/i18n/es_PE.po new file mode 100644 index 000000000..9dbedd546 --- /dev/null +++ b/base_comment_template/i18n/es_PE.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/es_PY.po b/base_comment_template/i18n/es_PY.po new file mode 100644 index 000000000..137f61bf7 --- /dev/null +++ b/base_comment_template/i18n/es_PY.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/es_VE.po b/base_comment_template/i18n/es_VE.po new file mode 100644 index 000000000..b5376a4d5 --- /dev/null +++ b/base_comment_template/i18n/es_VE.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/et.po b/base_comment_template/i18n/et.po new file mode 100644 index 000000000..beeae1a40 --- /dev/null +++ b/base_comment_template/i18n/et.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/eu.po b/base_comment_template/i18n/eu.po new file mode 100644 index 000000000..5e685e70c --- /dev/null +++ b/base_comment_template/i18n/eu.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Created on" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/fa.po b/base_comment_template/i18n/fa.po new file mode 100644 index 000000000..2ef953ba1 --- /dev/null +++ b/base_comment_template/i18n/fa.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "شناسه" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/fi.po b/base_comment_template/i18n/fi.po new file mode 100644 index 000000000..a71a77931 --- /dev/null +++ b/base_comment_template/i18n/fi.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/fr.po b/base_comment_template/i18n/fr.po new file mode 100644 index 000000000..384cbaf46 --- /dev/null +++ b/base_comment_template/i18n/fr.po @@ -0,0 +1,246 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Commentaire" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "Modèles de commentaires" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Dernière mise-à-jour le" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Dernière mise-à-jour par" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Dernière mise-à-jour le" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Position sur le document" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#~ msgid "After lines" +#~ msgstr "Après les lignes" + +#~ msgid "Base comment template" +#~ msgstr "Modèle de textes de commentaires" + +#~ msgid "Before lines" +#~ msgstr "Avant les lignes" + +#~ msgid "Comment summary" +#~ msgstr "Nom" + +#, fuzzy +#~ msgid "Conditions template" +#~ msgstr "Modèles de commentaires" + +#~ msgid "Position" +#~ msgstr "Position" diff --git a/base_comment_template/i18n/fr_CA.po b/base_comment_template/i18n/fr_CA.po new file mode 100644 index 000000000..1dab57a6b --- /dev/null +++ b/base_comment_template/i18n/fr_CA.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "Identifiant" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/fr_CH.po b/base_comment_template/i18n/fr_CH.po new file mode 100644 index 000000000..5b9685b29 --- /dev/null +++ b/base_comment_template/i18n/fr_CH.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/gl.po b/base_comment_template/i18n/gl.po new file mode 100644 index 000000000..001ca8223 --- /dev/null +++ b/base_comment_template/i18n/gl.po @@ -0,0 +1,247 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2019-02-06 14:50+0000\n" +"Last-Translator: Marta Vázquez Rodríguez \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" +"X-Generator: Weblate 3.4\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Comentario" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "Modelos de comentarios" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nome mostrado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Posición no documento" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#~ msgid "After lines" +#~ msgstr "Despois das liñas" + +#~ msgid "Base comment template" +#~ msgstr "Modelo do comentario base" + +#~ msgid "Before lines" +#~ msgstr "Antes das liñas" + +#~ msgid "Comment summary" +#~ msgstr "Índice de comentarios" + +#, fuzzy +#~ msgid "Conditions template" +#~ msgstr "Modelos de comentarios" + +#~ msgid "Position" +#~ msgstr "Posición" diff --git a/base_comment_template/i18n/gl_ES.po b/base_comment_template/i18n/gl_ES.po new file mode 100644 index 000000000..847800bcd --- /dev/null +++ b/base_comment_template/i18n/gl_ES.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/he.po b/base_comment_template/i18n/he.po new file mode 100644 index 000000000..1b78ca052 --- /dev/null +++ b/base_comment_template/i18n/he.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "מזהה" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/hr.po b/base_comment_template/i18n/hr.po new file mode 100644 index 000000000..877f9f25c --- /dev/null +++ b/base_comment_template/i18n/hr.po @@ -0,0 +1,248 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +# Ana-Maria Olujić , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2020-03-05 16:13+0000\n" +"Last-Translator: Bole \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" +"X-Generator: Weblate 3.10\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "Aktivan" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Komentar" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "Predlošci komentara" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "Tvrtka" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Stvorio/la" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Stvoreno dana" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Zadnju izmjenu izvršio/la" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "Naziv" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Pozicija na dokumentu" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#~ msgid "After lines" +#~ msgstr "Iza linija" + +#~ msgid "Base comment template" +#~ msgstr "Osnovni Predložak komentara" + +#~ msgid "Before lines" +#~ msgstr "Ispred linija" + +#~ msgid "Comment summary" +#~ msgstr "Sažetak komentara" + +#~ msgid "Conditions template" +#~ msgstr "Predložak uvjeta" + +#~ msgid "Position" +#~ msgstr "Pozicija" diff --git a/base_comment_template/i18n/hr_HR.po b/base_comment_template/i18n/hr_HR.po new file mode 100644 index 000000000..3f1e0a632 --- /dev/null +++ b/base_comment_template/i18n/hr_HR.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/hu.po b/base_comment_template/i18n/hu.po new file mode 100644 index 000000000..165dde7ac --- /dev/null +++ b/base_comment_template/i18n/hu.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/id.po b/base_comment_template/i18n/id.po new file mode 100644 index 000000000..e40bf1760 --- /dev/null +++ b/base_comment_template/i18n/id.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/it.po b/base_comment_template/i18n/it.po new file mode 100644 index 000000000..c8e97e40b --- /dev/null +++ b/base_comment_template/i18n/it.po @@ -0,0 +1,231 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# 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-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: Paolo Valier , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Coomento" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Ultima Modifica il" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#~ msgid "Position" +#~ msgstr "Posizione" diff --git a/base_comment_template/i18n/ja.po b/base_comment_template/i18n/ja.po new file mode 100644 index 000000000..842f178c8 --- /dev/null +++ b/base_comment_template/i18n/ja.po @@ -0,0 +1,247 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2019-07-05 04:42+0000\n" +"Last-Translator: Yoshi Tashiro \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 3.7.1\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "コメント" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "コメントテンプレート" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "作成日" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "ドキュメント上の位置" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#~ msgid "After lines" +#~ msgstr "明細行後" + +#~ msgid "Base comment template" +#~ msgstr "Base comment template" + +#~ msgid "Before lines" +#~ msgstr "明細行前" + +#~ msgid "Comment summary" +#~ msgstr "コメントサマリ" + +#, fuzzy +#~ msgid "Conditions template" +#~ msgstr "コメントテンプレート" + +#~ msgid "Position" +#~ msgstr "位置" diff --git a/base_comment_template/i18n/ko.po b/base_comment_template/i18n/ko.po new file mode 100644 index 000000000..ac5def652 --- /dev/null +++ b/base_comment_template/i18n/ko.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "작성일" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/lt.po b/base_comment_template/i18n/lt.po new file mode 100644 index 000000000..a701ac98a --- /dev/null +++ b/base_comment_template/i18n/lt.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/lt_LT.po b/base_comment_template/i18n/lt_LT.po new file mode 100644 index 000000000..cf5cff6bc --- /dev/null +++ b/base_comment_template/i18n/lt_LT.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/lv.po b/base_comment_template/i18n/lv.po new file mode 100644 index 000000000..2e998e89d --- /dev/null +++ b/base_comment_template/i18n/lv.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/mk.po b/base_comment_template/i18n/mk.po new file mode 100644 index 000000000..1dcda5077 --- /dev/null +++ b/base_comment_template/i18n/mk.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/mn.po b/base_comment_template/i18n/mn.po new file mode 100644 index 000000000..e4b0ffc4b --- /dev/null +++ b/base_comment_template/i18n/mn.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/nb.po b/base_comment_template/i18n/nb.po new file mode 100644 index 000000000..b1c8eb6eb --- /dev/null +++ b/base_comment_template/i18n/nb.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/nb_NO.po b/base_comment_template/i18n/nb_NO.po new file mode 100644 index 000000000..411a32ede --- /dev/null +++ b/base_comment_template/i18n/nb_NO.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/nl.po b/base_comment_template/i18n/nl.po new file mode 100644 index 000000000..1d86d7ede --- /dev/null +++ b/base_comment_template/i18n/nl.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Opmerking" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/nl_BE.po b/base_comment_template/i18n/nl_BE.po new file mode 100644 index 000000000..8afd79edf --- /dev/null +++ b/base_comment_template/i18n/nl_BE.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/nl_NL.po b/base_comment_template/i18n/nl_NL.po new file mode 100644 index 000000000..375e85373 --- /dev/null +++ b/base_comment_template/i18n/nl_NL.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# 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-06-30 23:41+0000\n" +"PO-Revision-Date: 2017-06-30 23:41+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/pl.po b/base_comment_template/i18n/pl.po new file mode 100644 index 000000000..cc3d91d57 --- /dev/null +++ b/base_comment_template/i18n/pl.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/pt.po b/base_comment_template/i18n/pt.po new file mode 100644 index 000000000..17b097362 --- /dev/null +++ b/base_comment_template/i18n/pt.po @@ -0,0 +1,262 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2021-07-01 15:48+0000\n" +"Last-Translator: Pedro Castro Silva \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" +"X-Generator: Weblate 4.3.2\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "Ativo" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "Arquivado" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "Fundo" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Comentário" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "Modelo de Comentário" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "Modelos de Comentários" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "Modelo de Comentários" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "Empresa" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "Contacto" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "Domínio Filtro" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "Modelo IR" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" +"Se definido, o modelo de comentário estará disponível apenas para a empresa " +"selecionada." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" +"Se definido, o modelo de comentário estará disponível apenas para o parceiro " +"selecionado." + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "Nome" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "Nome/descrição deste modelo de comentário" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "Parceiro" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Posição no documento" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "Sequência" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" +"Comentários específicos de parceiros que podem ser incluídos em relatórios" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "Modelo" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "O número menor = A maior prioridade" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" +"Este modelo de comentário estará disponível neste modelo. Pode ver aqui " +"apenas os modelos autorizados a definir o modelo de comentário." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" +"Este modelo de comentário estará disponível apenas para objetos que " +"satisfaçam a condição" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "Este campo permite selecionar a posição do comentário nos relatórios." + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "Este é o modelo de texto que será inserido nos relatórios." + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "Topo" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" +"Se este modelo é compatível em relatórios para adicionar modelos de " +"comentários." + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" +"base.comment.template para colocar cabeçalho e rodapé em relatórios baseados " +"em modelos de comentários criados" + +#~ msgid "After lines" +#~ msgstr "Após as linhas" + +#~ msgid "Base comment template" +#~ msgstr "Modelo de Comentários Base" + +#~ msgid "Before lines" +#~ msgstr "Antes das Linhas" + +#~ msgid "Comment summary" +#~ msgstr "Resumo de comentário" + +#~ msgid "Conditions template" +#~ msgstr "Modelos de condições" + +#~ msgid "If set, it'll only be available for this company" +#~ msgstr "Se assinalado, só estará disponível para esta empresa" + +#~ msgid "Position" +#~ msgstr "Posição" diff --git a/base_comment_template/i18n/pt_BR.po b/base_comment_template/i18n/pt_BR.po new file mode 100644 index 000000000..4bb6e7088 --- /dev/null +++ b/base_comment_template/i18n/pt_BR.po @@ -0,0 +1,250 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2019-11-24 19:57+0000\n" +"Last-Translator: Rodrigo Macedo \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" +"X-Generator: Weblate 3.8\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "Ativo" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Comentário" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "Modelos de comentários" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "Empresa" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "Contato" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "Nome" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Posição no documento" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#~ msgid "After lines" +#~ msgstr "Depois das linhas" + +#~ msgid "Base comment template" +#~ msgstr "Modelo de comentário Base" + +#~ msgid "Before lines" +#~ msgstr "Antes das linhas" + +#~ msgid "Comment summary" +#~ msgstr "Índice de comentários" + +#~ msgid "Conditions template" +#~ msgstr "Modelos de condições" + +#~ msgid "If set, it'll only be available for this company" +#~ msgstr "Se definido, ele estará disponível apenas para esta empresa" + +#~ msgid "Position" +#~ msgstr "Posição" diff --git a/base_comment_template/i18n/pt_PT.po b/base_comment_template/i18n/pt_PT.po new file mode 100644 index 000000000..994ab1857 --- /dev/null +++ b/base_comment_template/i18n/pt_PT.po @@ -0,0 +1,250 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2020-03-23 17:13+0000\n" +"Last-Translator: Pedro Castro Silva \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" +"X-Generator: Weblate 3.10\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "Ativo" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Comentário" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "Modelos de Comentários" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "Empresa" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "Contacto" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "Nome" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Posição no documento" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#~ msgid "After lines" +#~ msgstr "Após as linhas" + +#~ msgid "Base comment template" +#~ msgstr "Modelo de comentários base" + +#~ msgid "Before lines" +#~ msgstr "Antes das linhas" + +#~ msgid "Comment summary" +#~ msgstr "Resumo de comentários" + +#~ msgid "Conditions template" +#~ msgstr "Modelo de condições" + +#~ msgid "If set, it'll only be available for this company" +#~ msgstr "Se assinalado, será apenas visível para esta empresa" + +#~ msgid "Position" +#~ msgstr "Posição" diff --git a/base_comment_template/i18n/ro.po b/base_comment_template/i18n/ro.po new file mode 100644 index 000000000..8d470b4d0 --- /dev/null +++ b/base_comment_template/i18n/ro.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/ru.po b/base_comment_template/i18n/ru.po new file mode 100644 index 000000000..beaaa4736 --- /dev/null +++ b/base_comment_template/i18n/ru.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Создан" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/sk.po b/base_comment_template/i18n/sk.po new file mode 100644 index 000000000..4ed0d1a3f --- /dev/null +++ b/base_comment_template/i18n/sk.po @@ -0,0 +1,249 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2020-07-04 17:19+0000\n" +"Last-Translator: Jan Prokop \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" +"X-Generator: Weblate 3.10\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "Aktívne" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Komentár" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "Šablóny komentárov" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "Spoločnosť" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "Názov" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Pozícia v dokumente" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#~ msgid "After lines" +#~ msgstr "Za položkami" + +#~ msgid "Base comment template" +#~ msgstr "Základná šablóna komentárov" + +#~ msgid "Before lines" +#~ msgstr "Pred položkami" + +#~ msgid "Comment summary" +#~ msgstr "Názov" + +#~ msgid "Conditions template" +#~ msgstr "Predvolená šablóna" + +#~ msgid "If set, it'll only be available for this company" +#~ msgstr "Ak je nastavená, bude k dispozícii iba pre túto spoločnosť" + +#~ msgid "Position" +#~ msgstr "Pozícia" diff --git a/base_comment_template/i18n/sl.po b/base_comment_template/i18n/sl.po new file mode 100644 index 000000000..759b03ef0 --- /dev/null +++ b/base_comment_template/i18n/sl.po @@ -0,0 +1,248 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +# Matjaž Mozetič , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: Matjaž Mozetič , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "Komentar" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "Predloge komentarjev" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Zadnjič posodobil" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Pozicija na dokumentu" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" + +#~ msgid "After lines" +#~ msgstr "Po postavkah" + +#~ msgid "Base comment template" +#~ msgstr "Osnovna predloga za komentarje" + +#~ msgid "Before lines" +#~ msgstr "Pred postavkami" + +#~ msgid "Comment summary" +#~ msgstr "Povzetek komentarjev" + +#, fuzzy +#~ msgid "Conditions template" +#~ msgstr "Predloge komentarjev" + +#~ msgid "Position" +#~ msgstr "Položaj" diff --git a/base_comment_template/i18n/sr.po b/base_comment_template/i18n/sr.po new file mode 100644 index 000000000..00c2caf7c --- /dev/null +++ b/base_comment_template/i18n/sr.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/sr@latin.po b/base_comment_template/i18n/sr@latin.po new file mode 100644 index 000000000..155e699f3 --- /dev/null +++ b/base_comment_template/i18n/sr@latin.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/sv.po b/base_comment_template/i18n/sv.po new file mode 100644 index 000000000..ff43f0501 --- /dev/null +++ b/base_comment_template/i18n/sv.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/th.po b/base_comment_template/i18n/th.po new file mode 100644 index 000000000..0091caf46 --- /dev/null +++ b/base_comment_template/i18n/th.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "รหัส" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/tr.po b/base_comment_template/i18n/tr.po new file mode 100644 index 000000000..9e6a730c2 --- /dev/null +++ b/base_comment_template/i18n/tr.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/tr_TR.po b/base_comment_template/i18n/tr_TR.po new file mode 100644 index 000000000..e5f988c77 --- /dev/null +++ b/base_comment_template/i18n/tr_TR.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+0000\n" +"Last-Translator: OCA Transbot , 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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "Kimlik" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/uk.po b/base_comment_template/i18n/uk.po new file mode 100644 index 000000000..9e45bd9d9 --- /dev/null +++ b/base_comment_template/i18n/uk.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/vi.po b/base_comment_template/i18n/vi.po new file mode 100644 index 000000000..14868df8b --- /dev/null +++ b/base_comment_template/i18n/vi.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/vi_VN.po b/base_comment_template/i18n/vi_VN.po new file mode 100644 index 000000000..feb428f97 --- /dev/null +++ b/base_comment_template/i18n/vi_VN.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/zh_CN.po b/base_comment_template/i18n/zh_CN.po new file mode 100644 index 000000000..f85dc7be4 --- /dev/null +++ b/base_comment_template/i18n/zh_CN.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/i18n/zh_TW.po b/base_comment_template/i18n/zh_TW.po new file mode 100644 index 000000000..d2d9c47d4 --- /dev/null +++ b/base_comment_template/i18n/zh_TW.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_comment_template +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-16 11:59+0000\n" +"PO-Revision-Date: 2017-05-16 11:59+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: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__active +msgid "Active" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Archived" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "Bottom" +msgstr "" + +#. module: base_comment_template +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__is_comment_template +msgid "Comment Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__base_comment_template_ids +#: model:ir.ui.menu,name:base_comment_template.reports_base_comment_template_menuitem +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_search +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_tree +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Comments Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__company_id +msgid "Company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__create_date +msgid "Created on" +msgstr "建立於" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__display_name +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__domain +msgid "Filter Domain" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template__id +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model__id +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner__id +msgid "ID" +msgstr "編號" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__model_ids +msgid "IR Model" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "" +"If set, the comment template will be available only for the selected company." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__partner_ids +msgid "" +"If set, the comment template will be available only for the selected partner." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_comment_template____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_ir_model____last_update +#: model:ir.model.fields,field_description:base_comment_template.field_res_partner____last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_ir_model +msgid "Models" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_partner_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__name +msgid "Name/description of this comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__partner_ids +msgid "Partner" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__sequence +msgid "Sequence" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_res_partner__base_comment_template_ids +#: model:ir.model.fields,help:base_comment_template.field_res_users__base_comment_template_ids +msgid "Specific partner comments that can be included in reports" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +msgid "Template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__sequence +msgid "The smaller number = The higher priority" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__model_ids +msgid "" +"This comment template will be available on this models. You can see here " +"only models allowed to set the coment template." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__domain +msgid "" +"This comment template will be available only for objects that satisfy the " +"condition" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "This field allows to select the position of the comment on reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__text +msgid "This is the text template that will be inserted into reports." +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Top" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_ir_model__is_comment_template +msgid "Whether this model supports in reports to add comment templates." +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_comment_template +msgid "" +"base.comment.template to put header and footer in reports based on created " +"comment templates" +msgstr "" diff --git a/base_comment_template/migrations/14.0.2.0.0/post-migration.py b/base_comment_template/migrations/14.0.2.0.0/post-migration.py new file mode 100644 index 000000000..30414fe2c --- /dev/null +++ b/base_comment_template/migrations/14.0.2.0.0/post-migration.py @@ -0,0 +1,29 @@ +# Copyright 2021 Tecnativa - Víctor Martínez +# Copyright 2021 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +from openupgradelib import openupgrade + +from odoo.tools import parse_version + + +@openupgrade.migrate() +def migrate(env, version): + if parse_version(version) == parse_version("14.0.1.0.0"): + openupgrade.logged_query( + env.cr, + """ + INSERT INTO base_comment_template_res_partner_rel + (res_partner_id, base_comment_template_id) + SELECT SPLIT_PART(ip.res_id, ',', 2)::int AS res_partner_id, + SPLIT_PART(ip.value_reference, ',', 2)::int AS base_comment_template_id + FROM ir_property ip + JOIN ir_model_fields imf ON ip.fields_id = imf.id + JOIN res_partner rp ON rp.id = SPLIT_PART(ip.res_id, ',', 2)::int + JOIN base_comment_template bct + ON bct.id = SPLIT_PART(ip.value_reference, ',', 2)::int + WHERE imf.name = 'property_comment_template_id' + AND imf.model = 'res.partner' + AND ip.res_id IS NOT NULL + ON CONFLICT DO NOTHING + """, + ) diff --git a/base_comment_template/migrations/14.0.2.0.0/pre-migration.py b/base_comment_template/migrations/14.0.2.0.0/pre-migration.py new file mode 100644 index 000000000..75933bfdf --- /dev/null +++ b/base_comment_template/migrations/14.0.2.0.0/pre-migration.py @@ -0,0 +1,30 @@ +# Copyright 2021 Tecnativa - Víctor Martínez +# Copyright 2021 Tecnativa - Pedro M: Baeza +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +from openupgradelib import openupgrade + +from odoo.tools import parse_version + +field_renames = [ + ("base.comment.template", "base_comment_template", "priority", "sequence"), +] + + +@openupgrade.migrate() +def migrate(env, version): + if parse_version(version) == parse_version("14.0.1.0.0"): + openupgrade.rename_fields(env, field_renames) + if openupgrade.table_exists(env.cr, "base_comment_template_res_partner_rel"): + # Swap column names, as they were incorrect + env.cr.execute( + "ALTER TABLE base_comment_template_res_partner_rel " + "RENAME base_comment_template_id TO temp" + ) + env.cr.execute( + "ALTER TABLE base_comment_template_res_partner_rel " + "RENAME res_partner_id TO base_comment_template_id" + ) + env.cr.execute( + "ALTER TABLE base_comment_template_res_partner_rel " + "RENAME temp TO res_partner_id" + ) diff --git a/base_comment_template/models/__init__.py b/base_comment_template/models/__init__.py new file mode 100644 index 000000000..d695c580a --- /dev/null +++ b/base_comment_template/models/__init__.py @@ -0,0 +1,4 @@ +from . import base_comment_template +from . import comment_template +from . import res_partner +from . import ir_model diff --git a/base_comment_template/models/base_comment_template.py b/base_comment_template/models/base_comment_template.py new file mode 100644 index 000000000..6ae2e2644 --- /dev/null +++ b/base_comment_template/models/base_comment_template.py @@ -0,0 +1,88 @@ +# Copyright 2014 Guewen Baconnier (Camptocamp SA) +# Copyright 2013-2014 Nicolas Bessi (Camptocamp SA) +# Copyright 2020 NextERP Romania SRL +# Copyright 2021 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo import fields, models + + +class BaseCommentTemplate(models.Model): + """Comment templates printed on reports""" + + _name = "base.comment.template" + _description = "Comments Template" + _order = "sequence,id" + + active = fields.Boolean(default=True) + position = fields.Selection( + string="Position on document", + selection=[("before_lines", "Top"), ("after_lines", "Bottom")], + required=True, + default="before_lines", + help="This field allows to select the position of the comment on reports.", + ) + name = fields.Char( + string="Name", + translate=True, + required=True, + help="Name/description of this comment template", + ) + text = fields.Html( + string="Template", + translate=True, + required=True, + sanitize=False, + help="This is the text template that will be inserted into reports.", + ) + company_id = fields.Many2one( + comodel_name="res.company", + string="Company", + ondelete="cascade", + index=True, + help="If set, the comment template will be available only for the selected " + "company.", + ) + partner_ids = fields.Many2many( + comodel_name="res.partner", + relation="base_comment_template_res_partner_rel", + column1="base_comment_template_id", + column2="res_partner_id", + string="Partner", + readonly=True, + help="If set, the comment template will be available only for the selected " + "partner.", + ) + model_ids = fields.Many2many( + comodel_name="ir.model", + string="IR Model", + ondelete="cascade", + domain=[ + ("is_comment_template", "=", True), + ("model", "!=", "comment.template"), + ], + required=True, + help="This comment template will be available on this models. " + "You can see here only models allowed to set the coment template.", + ) + domain = fields.Char( + string="Filter Domain", + required=True, + default="[]", + help="This comment template will be available only for objects " + "that satisfy the condition", + ) + sequence = fields.Integer( + required=True, default=10, help="The smaller number = The higher priority" + ) + + def name_get(self): + """Redefine the name_get method to show the template name with the position.""" + res = [] + for item in self: + name = "{} ({})".format( + item.name, dict(self._fields["position"].selection).get(item.position) + ) + if self.env.context.get("comment_template_model_display"): + name += " (%s)" % ", ".join(item.model_ids.mapped("name")) + res.append((item.id, name)) + return res diff --git a/base_comment_template/models/comment_template.py b/base_comment_template/models/comment_template.py new file mode 100644 index 000000000..9131cca1b --- /dev/null +++ b/base_comment_template/models/comment_template.py @@ -0,0 +1,44 @@ +# Copyright 2014 Guewen Baconnier (Camptocamp SA) +# Copyright 2013-2014 Nicolas Bessi (Camptocamp SA) +# Copyright 2020 NextERP Romania SRL +# Copyright 2021 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo import api, fields, models +from odoo.tools.safe_eval import safe_eval + + +class CommentTemplate(models.AbstractModel): + _name = "comment.template" + _description = ( + "base.comment.template to put header and footer " + "in reports based on created comment templates" + ) + # This field allows to set any given field that determines the source partner for + # the comment templates downstream. + # E.g.: other models where the partner field is called customer_id. + _comment_template_partner_field_name = "partner_id" + + comment_template_ids = fields.Many2many( + compute="_compute_comment_template_ids", + comodel_name="base.comment.template", + string="Comment Template", + domain=lambda self: [("model_ids.model", "=", self._name)], + store=True, + readonly=False, + ) + + @api.depends(_comment_template_partner_field_name) + def _compute_comment_template_ids(self): + for record in self: + partner = record[self._comment_template_partner_field_name] + record.comment_template_ids = [(5,)] + templates = self.env["base.comment.template"].search( + [ + ("id", "in", partner.base_comment_template_ids.ids), + ("model_ids.model", "=", self._name), + ] + ) + for template in templates: + domain = safe_eval(template.domain) + if not domain or record.filtered_domain(domain): + record.comment_template_ids = [(4, template.id)] diff --git a/base_comment_template/models/ir_model.py b/base_comment_template/models/ir_model.py new file mode 100644 index 000000000..b799732b0 --- /dev/null +++ b/base_comment_template/models/ir_model.py @@ -0,0 +1,33 @@ +# Copyright 2020 NextERP Romania SRL +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class IrModel(models.Model): + _inherit = "ir.model" + + is_comment_template = fields.Boolean( + string="Comment Template", + default=False, + help="Whether this model supports in reports to add comment templates.", + ) + + def _reflect_model_params(self, model): + vals = super(IrModel, self)._reflect_model_params(model) + vals["is_comment_template"] = issubclass( + type(model), self.pool["comment.template"] + ) + return vals + + @api.model + def _instanciate(self, model_data): + model_class = super(IrModel, self)._instanciate(model_data) + if ( + model_data.get("is_comment_template") + and model_class._name != "comment.template" + ): + parents = model_class._inherit or [] + parents = [parents] if isinstance(parents, str) else parents + model_class._inherit = parents + ["comment.template"] + return model_class diff --git a/base_comment_template/models/res_partner.py b/base_comment_template/models/res_partner.py new file mode 100644 index 000000000..cc06cbdc4 --- /dev/null +++ b/base_comment_template/models/res_partner.py @@ -0,0 +1,23 @@ +# Copyright 2020 NextERP Romania SRL +# Copyright 2021 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class ResPartner(models.Model): + _inherit = "res.partner" + + base_comment_template_ids = fields.Many2many( + comodel_name="base.comment.template", + relation="base_comment_template_res_partner_rel", + column1="res_partner_id", + column2="base_comment_template_id", + string="Comment Templates", + help="Specific partner comments that can be included in reports", + ) + + @api.model + def _commercial_fields(self): + """Add comment templates to commercial fields""" + return super()._commercial_fields() + ["base_comment_template_ids"] diff --git a/base_comment_template/readme/CONFIGURE.rst b/base_comment_template/readme/CONFIGURE.rst new file mode 100644 index 000000000..aa45ae16b --- /dev/null +++ b/base_comment_template/readme/CONFIGURE.rst @@ -0,0 +1,8 @@ +Go to *Settings > Technical > Reporting > Comment Templates* and start designing you comment templates. + +This module is the base module for following modules: + +* sale_comment_template +* purchase_comment_template +* invoice_comment_template +* stock_picking_comment_template diff --git a/base_comment_template/readme/CONTRIBUTORS.rst b/base_comment_template/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..0468fc782 --- /dev/null +++ b/base_comment_template/readme/CONTRIBUTORS.rst @@ -0,0 +1,22 @@ +* Xavier Jimenez +* Nicolas Bessi +* Yannick Vaucher +* Guewen Baconnier +* Simone Rubino +* `DynApps `_: + + * Raf Ven + +* `Druidoo `_: + + * Iván Todorovich +* Pierre Verkest + +* `NextERP Romania `_: + + * Fekete Mihai + +* `Tecnativa `_: + + * Carlos Roca + * Víctor Martínez diff --git a/base_comment_template/readme/DESCRIPTION.rst b/base_comment_template/readme/DESCRIPTION.rst new file mode 100644 index 000000000..6909ad5d5 --- /dev/null +++ b/base_comment_template/readme/DESCRIPTION.rst @@ -0,0 +1,23 @@ +Add a new mixin class to define templates of comments to print on documents. +The comment templates can be defined like make templates, so you can use variables from linked models. + +Two positions are available for the comments: + +* above document lines (before_lines) +* below document lines (after_lines) + +The template are general, and can be attached to any Model and based on some domain defined in the template. +You can define one default template per Model and domain, which can be overwritten for any company and partners. +It has a priority field (smaller number = higher priority) + +In existing reports, if you add this line will get the comment template if you created one like + +* ( or without any parameter) + + +This module is the base module for following modules: + +* sale_comment_template +* purchase_comment_template +* invoice_comment_template +* stock_picking_comment_template diff --git a/base_comment_template/readme/USAGE.rst b/base_comment_template/readme/USAGE.rst new file mode 100644 index 000000000..2be8054ac --- /dev/null +++ b/base_comment_template/readme/USAGE.rst @@ -0,0 +1,31 @@ +#. Go to *Settings* and activate the developer mode. +#. Go to *Settings > Technical > Reporting > Comment Templates*. +#. Create a new record. +#. Define the Company the template is linked or leave default for all companies. +#. Define the Partner the template is linked or leave default for all partners. +#. Define the Model, Domain the template is linked. +#. Define the Position where the template will be printed: + + * above document lines + * below document lines + +You should have at least one template with Default field set, if you choose a Partner the template is deselected as a Default one. +If you create a new template with the same configuration (Model, Domain, Position) and set it as Default, the previous one will be deselected as a default one. + +The template is a html field which will be rendered just like a mail template, so you can use variables like ${object}, ${user}, ${ctx} to add dynamic content. + +Change the report related to the model from configuration and add a statement like: + +

+ + + +

+ +

+ + + +

+ +You should always use t-if since the method returns False if no template is found. diff --git a/base_comment_template/security/ir.model.access.csv b/base_comment_template/security/ir.model.access.csv new file mode 100644 index 000000000..d2db39e34 --- /dev/null +++ b/base_comment_template/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_base_comment_template_user,access_base_comment_template_user,model_base_comment_template,,1,0,0,0 +access_base_comment_template,access_base_comment_template no one,model_base_comment_template,base.group_no_one,1,1,1,1 diff --git a/base_comment_template/security/security.xml b/base_comment_template/security/security.xml new file mode 100644 index 000000000..440091427 --- /dev/null +++ b/base_comment_template/security/security.xml @@ -0,0 +1,12 @@ + + + + + Base comment multi-company + + + + ['|',('company_id','=',False),('company_id','in',company_ids)] + + + diff --git a/base_comment_template/static/description/icon.png b/base_comment_template/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/base_comment_template/static/description/icon.png differ diff --git a/base_comment_template/static/description/index.html b/base_comment_template/static/description/index.html new file mode 100644 index 000000000..9bb4d0780 --- /dev/null +++ b/base_comment_template/static/description/index.html @@ -0,0 +1,503 @@ + + + + + + +Base Comments Templates + + + +
+

Base Comments Templates

+ + +

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

+

Add a new mixin class to define templates of comments to print on documents. +The comment templates can be defined like make templates, so you can use variables from linked models.

+

Two positions are available for the comments:

+
    +
  • above document lines (before_lines)
  • +
  • below document lines (after_lines)
  • +
+

The template are general, and can be attached to any Model and based on some domain defined in the template. +You can define one default template per Model and domain, which can be overwritten for any company and partners. +It has a priority field (smaller number = higher priority)

+

In existing reports, if you add this line will get the comment template if you created one like

+
    +
  • <span t-raw=”o.get_comment_template(‘position’,company_id=o.company_id, partner_id=o.parnter_id )”/> ( or without any parameter)
  • +
+

This module is the base module for following modules:

+
    +
  • sale_comment_template
  • +
  • purchase_comment_template
  • +
  • invoice_comment_template
  • +
  • stock_picking_comment_template
  • +
+

Table of contents

+ +
+

Configuration

+

Go to Settings > Technical > Reporting > Comment Templates and start designing you comment templates.

+

This module is the base module for following modules:

+
    +
  • sale_comment_template
  • +
  • purchase_comment_template
  • +
  • invoice_comment_template
  • +
  • stock_picking_comment_template
  • +
+
+
+

Usage

+
    +
  1. Go to Settings and activate the developer mode.
  2. +
  3. Go to Settings > Technical > Reporting > Comment Templates.
  4. +
  5. Create a new record.
  6. +
  7. Define the Company the template is linked or leave default for all companies.
  8. +
  9. Define the Partner the template is linked or leave default for all partners.
  10. +
  11. Define the Model, Domain the template is linked.
  12. +
  13. Define the Position where the template will be printed:
      +
    • above document lines
    • +
    • below document lines
    • +
    +
  14. +
+

You should have at least one template with Default field set, if you choose a Partner the template is deselected as a Default one. +If you create a new template with the same configuration (Model, Domain, Position) and set it as Default, the previous one will be deselected as a default one.

+

The template is a html field which will be rendered just like a mail template, so you can use variables like ${object}, ${user}, ${ctx} to add dynamic content.

+

Change the report related to the model from configuration and add a statement like:

+

<p t-if=”o.get_comment_template(‘before_lines’, o.company_id.id, o.partner_id and o.partner_id.id or False)”>

+
+<span t-raw=”o.get_comment_template(‘before_lines’, o.company_id.id, o.partner_id and o.partner_id.id or False)”/>
+

</p>

+

<p t-if=”o.get_comment_template(‘after_lines’, o.company_id.id, o.partner_id and o.partner_id.id or False)”>

+
+<span t-raw=”o.get_comment_template(‘after_lines’, o.company_id.id, o.partner_id and o.partner_id.id or False)”/>
+

</p>

+

You should always use t-if since the method returns False if no template is found.

+
+
+

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 smashing it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Camptocamp
  • +
+
+
+

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.

+

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/base_comment_template/tests/__init__.py b/base_comment_template/tests/__init__.py new file mode 100644 index 000000000..e198115e4 --- /dev/null +++ b/base_comment_template/tests/__init__.py @@ -0,0 +1,2 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +from . import test_base_comment_template diff --git a/base_comment_template/tests/fake_models.py b/base_comment_template/tests/fake_models.py new file mode 100644 index 000000000..02ee0ca23 --- /dev/null +++ b/base_comment_template/tests/fake_models.py @@ -0,0 +1,34 @@ +# Copyright 2017 LasLabs Inc. +# Copyright 2018 ACSONE +# Copyright 2018 Camptocamp +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). + +from odoo import models + + +def setup_test_model(env, model_cls): + """Pass a test model class and initialize it. + + Courtesy of SBidoul from https://github.com/OCA/mis-builder :) + """ + model_cls._build_model(env.registry, env.cr) + env.registry.setup_models(env.cr) + env.registry.init_models( + env.cr, [model_cls._name], dict(env.context, update_custom_fields=True) + ) + + +def teardown_test_model(env, model_cls): + """Pass a test model class and deinitialize it. + + Courtesy of SBidoul from https://github.com/OCA/mis-builder :) + """ + if not getattr(model_cls, "_teardown_no_delete", False): + del env.registry.models[model_cls._name] + env.registry.setup_models(env.cr) + + +class ResUsers(models.Model): + _name = "res.users" + _inherit = ["res.users", "comment.template"] + _teardown_no_delete = True diff --git a/base_comment_template/tests/test_base_comment_template.py b/base_comment_template/tests/test_base_comment_template.py new file mode 100644 index 000000000..30ae71a52 --- /dev/null +++ b/base_comment_template/tests/test_base_comment_template.py @@ -0,0 +1,89 @@ +# Copyright 2020 NextERP Romania SRL +# Copyright 2021 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo.tests import common + +from .fake_models import ResUsers, setup_test_model, teardown_test_model + + +class TestCommentTemplate(common.SavepointCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + setup_test_model(cls.env, ResUsers) + cls.user_obj = cls.env.ref("base.model_res_users") + cls.user = cls.env.ref("base.user_demo") + cls.user2 = cls.env.ref("base.demo_user0") + cls.partner_id = cls.env.ref("base.res_partner_12") + cls.partner2_id = cls.env.ref("base.res_partner_10") + cls.main_company = cls.env.ref("base.main_company") + cls.company = cls.env["res.company"].create({"name": "Test company"}) + cls.before_template_id = cls.env["base.comment.template"].create( + { + "name": "Top template", + "text": "Text before lines", + "model_ids": [(6, 0, cls.user_obj.ids)], + "company_id": cls.company.id, + } + ) + cls.after_template_id = cls.env["base.comment.template"].create( + { + "name": "Bottom template", + "position": "after_lines", + "text": "Text after lines", + "model_ids": [(6, 0, cls.user_obj.ids)], + "company_id": cls.company.id, + } + ) + cls.user.partner_id.base_comment_template_ids = [ + (4, cls.before_template_id.id), + (4, cls.after_template_id.id), + ] + + @classmethod + def tearDownClass(cls): + teardown_test_model(cls.env, ResUsers) + super(TestCommentTemplate, cls).tearDownClass() + + def test_template_name_get(self): + self.assertEqual( + self.before_template_id.display_name, + "Top template (Top)", + ) + self.assertEqual( + self.after_template_id.display_name, + "Bottom template (Bottom)", + ) + + def test_general_template(self): + # Need to force _compute because only trigger when partner_id have changed + self.user._compute_comment_template_ids() + # Check getting default comment template + self.assertTrue(self.before_template_id in self.user.comment_template_ids) + self.assertTrue(self.after_template_id in self.user.comment_template_ids) + + def test_partner_template(self): + self.partner2_id.base_comment_template_ids = [ + (4, self.before_template_id.id), + (4, self.after_template_id.id), + ] + self.assertTrue( + self.before_template_id in self.partner2_id.base_comment_template_ids + ) + self.assertTrue( + self.after_template_id in self.partner2_id.base_comment_template_ids + ) + + def test_partner_template_domain(self): + # Check getting the comment template if domain is set + self.partner2_id.base_comment_template_ids = [ + (4, self.before_template_id.id), + (4, self.after_template_id.id), + ] + self.before_template_id.domain = "[('id', 'in', %s)]" % self.user.ids + self.assertTrue( + self.before_template_id in self.partner2_id.base_comment_template_ids + ) + self.assertTrue( + self.before_template_id not in self.partner_id.base_comment_template_ids + ) diff --git a/base_comment_template/views/base_comment_template_view.xml b/base_comment_template/views/base_comment_template_view.xml new file mode 100644 index 000000000..79b4979a5 --- /dev/null +++ b/base_comment_template/views/base_comment_template_view.xml @@ -0,0 +1,91 @@ + + + + base.comment.template.search + base.comment.template + + + + + + + + + + + + + + base.comment.template.search + base.comment.template + + + + + + + + + + + + + + + base.comment.template.form + base.comment.template + +
+ +
+ +
+
+

+ +

+
+ + + + + + + + + + + + + + + +
+
+
+
+ + Comment Templates + ir.actions.act_window + base.comment.template + tree,form + + + + +
diff --git a/base_comment_template/views/res_partner_view.xml b/base_comment_template/views/res_partner_view.xml new file mode 100644 index 000000000..d1fd4c7c2 --- /dev/null +++ b/base_comment_template/views/res_partner_view.xml @@ -0,0 +1,28 @@ + + + res.partner + + + + + + + + + + + + + + + + + + diff --git a/bi_sql_editor/README.rst b/bi_sql_editor/README.rst new file mode 100644 index 000000000..2b40007aa --- /dev/null +++ b/bi_sql_editor/README.rst @@ -0,0 +1,190 @@ +============= +BI SQL Editor +============= + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github + :target: https://github.com/OCA/reporting-engine/tree/14.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-14-0/reporting-engine-14-0-bi_sql_editor + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/143/14.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module extends the functionality of reporting, to support creation +of extra custom reports. +It allows user to write a custom SQL request. (Generally, admin users) + +Once written, a new model is generated, and user can map the selected field +with odoo fields. +Then user ends the process, creating new menu, action and graph view. + +Technically, the module create SQL View (or materialized view, if option is +checked). Materialized view duplicates datas, but request are fastest. If +materialized view is enabled, this module will create a cron task to refresh +the data). + +By default, users member of 'SQL Request / User' can see all the views. +You can specify extra groups that have the right to access to a specific view. + +Warning +------- +This module is intended for technician people in a company and for Odoo integrators. + +It requires the user to know SQL syntax and Odoo models. + +If you don't have such skills, do not try to use this module specially on a production +environment. + +Use Cases +--------- + +this module is interesting for the following use cases + +* You want to realize technical SQL requests, that Odoo framework doesn't allow + (For exemple, UNION with many SELECT) A typical use case is if you want to have + Sale Orders and PoS Orders datas in a same table + +* You want to customize an Odoo report, removing some useless fields and adding + some custom ones. In that case, you can simply select the fields of the original + report (sale.report model for exemple), and add your custom fields + +* You have a lot of data, and classical SQL Views have very bad performance. + In that case, MATERIALIZED VIEW will be a good solution to reduce display duration + +**Table of contents** + +.. contents:: + :local: + +Installation +============ + +* You must put this module as `server_wide_modules` in your odoo configuration file + or add '--load=bi_sql_editor' if you start odoo in command line. + +Configuration +============= + +To configure this module, you need to: + +* Go to Settings / Technical / Database Structure / SQL Views + +* tip your SQL request + + .. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/14.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/14.0/bi_sql_editor/static/description/02_security_access.png + :width: 800 px + +* Click on the button 'Clean and Check Request' + +* Once the sql request checked, the module analyses the column of the view, + and propose field mapping. For each field, you can decide to create an index + and set if it will be displayed on the pivot graph as a column, a row or a + measure. + + .. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/14.0/bi_sql_editor/static/description/03_field_mapping.png + :width: 800 px + +* Click on the button 'Create SQL View, Indexes and Models'. (this step could + take a while, if view is materialized) + +* If it's a MATERIALIZED view: + + * a cron task is created to refresh + the view. You can so define the frequency of the refresh. + * the size of view (and the indexes is displayed) + + .. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/14.0/bi_sql_editor/static/description/04_materialized_view_setting.png + :width: 800 px + +* Finally, click on 'Create UI', to create new menu, action, graph view and + search view. + +Usage +===== + +To use this module, you need to: + +#. Go to 'Reporting' / 'Custom Reports' + +#. Select the desired report + + .. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/14.0/bi_sql_editor/static/description/05_reporting_pivot.png + :width: 800 px + +* You can switch to 'Pie' chart or 'Line Chart' as any report, + + .. figure:: https://raw.githubusercontent.com/OCA/reporting-engine/14.0/bi_sql_editor/static/description/05_reporting_pie.png + :width: 800 px + +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 smashing 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. + +This module is part of the `OCA/reporting-engine `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/bi_sql_editor/__init__.py b/bi_sql_editor/__init__.py new file mode 100644 index 000000000..c09f841b4 --- /dev/null +++ b/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/bi_sql_editor/__manifest__.py b/bi_sql_editor/__manifest__.py new file mode 100644 index 000000000..3a909ba72 --- /dev/null +++ b/bi_sql_editor/__manifest__.py @@ -0,0 +1,23 @@ +# Copyright (C) 2017 - Today: GRAP (http://www.grap.coop) +# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "BI SQL Editor", + "summary": "BI Views builder, based on Materialized or Normal SQL Views", + "version": "14.0.1.0.0", + "license": "AGPL-3", + "category": "Reporting", + "author": "GRAP,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/reporting-engine", + "depends": ["base", "sql_request_abstract"], + "data": [ + "security/ir.model.access.csv", + "views/view_bi_sql_view.xml", + "views/action.xml", + "views/menu.xml", + ], + "demo": ["demo/res_groups_demo.xml", "demo/bi_sql_view_demo.xml"], + "installable": True, + "uninstall_hook": "uninstall_hook", +} diff --git a/bi_sql_editor/demo/bi_sql_view_demo.xml b/bi_sql_editor/demo/bi_sql_view_demo.xml new file mode 100644 index 000000000..6e7e97116 --- /dev/null +++ b/bi_sql_editor/demo/bi_sql_view_demo.xml @@ -0,0 +1,67 @@ + + + + + Draft Incorrect SQL View + incorrect_view + + + + + Partners View + partners_view + + + + + Modules by Authors + modules_view + + + + + + + + diff --git a/bi_sql_editor/demo/res_groups_demo.xml b/bi_sql_editor/demo/res_groups_demo.xml new file mode 100644 index 000000000..454e815dc --- /dev/null +++ b/bi_sql_editor/demo/res_groups_demo.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/bi_sql_editor/hooks.py b/bi_sql_editor/hooks.py new file mode 100644 index 000000000..25fe633ed --- /dev/null +++ b/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/bi_sql_editor/i18n/am.po b/bi_sql_editor/i18n/am.po new file mode 100644 index 000000000..fbe1946a9 --- /dev/null +++ b/bi_sql_editor/i18n/am.po @@ -0,0 +1,644 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/ar.po b/bi_sql_editor/i18n/ar.po new file mode 100644 index 000000000..a513dd824 --- /dev/null +++ b/bi_sql_editor/i18n/ar.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "المعرف" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "النموذج" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "الاسم" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "الأمن" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "حفظ كمسودة" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "مسوّدة" diff --git a/bi_sql_editor/i18n/bg.po b/bi_sql_editor/i18n/bg.po new file mode 100644 index 000000000..1c1937b21 --- /dev/null +++ b/bi_sql_editor/i18n/bg.po @@ -0,0 +1,644 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Име" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Защита" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/bi_sql_editor.pot b/bi_sql_editor/i18n/bi_sql_editor.pot new file mode 100644 index 000000000..39e3c8fc5 --- /dev/null +++ b/bi_sql_editor/i18n/bi_sql_editor.pot @@ -0,0 +1,681 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.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_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model_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:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_ir_model_fields +msgid "Fields" +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.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields__id +msgid "ID" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_ir_model_fields____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__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.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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: " +"https://www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-" +"SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.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_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to" +" create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/bs.po b/bi_sql_editor/i18n/bs.po new file mode 100644 index 000000000..11b3b3274 --- /dev/null +++ b/bi_sql_editor/i18n/bs.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Ime" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Sigurnost" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Postavi u pripremu" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "U pripremi" diff --git a/bi_sql_editor/i18n/ca.po b/bi_sql_editor/i18n/ca.po new file mode 100644 index 000000000..bcff215fa --- /dev/null +++ b/bi_sql_editor/i18n/ca.po @@ -0,0 +1,647 @@ +# 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: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "Nom del índex " + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Model" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nom" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "Consulta " + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Seguritat" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Estat" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Esborrany" diff --git a/bi_sql_editor/i18n/cs.po b/bi_sql_editor/i18n/cs.po new file mode 100644 index 000000000..1cbb1177f --- /dev/null +++ b/bi_sql_editor/i18n/cs.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Název" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Zabezpečení" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Nastavit na koncept" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Stav" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Návrh" diff --git a/bi_sql_editor/i18n/da.po b/bi_sql_editor/i18n/da.po new file mode 100644 index 000000000..113586d1f --- /dev/null +++ b/bi_sql_editor/i18n/da.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "Id" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Navn" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Sikkerhed" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Delstat" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Udkast" diff --git a/bi_sql_editor/i18n/de.po b/bi_sql_editor/i18n/de.po new file mode 100644 index 000000000..9554cf1a1 --- /dev/null +++ b/bi_sql_editor/i18n/de.po @@ -0,0 +1,661 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "%d.%m.%Y %H:%M:%S UTC" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "%s (Kopie)" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "%s Zugriff %s" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "Zugriff %s" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "Erlaubte Gruppen" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "Erlaubte Benutzer" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" +"Sind Sie sicher, dass Sie diese SQL-Sicht in den Entwurf zurücksetzen " +"möchten? Dies wird Ihre umgesetzten Sichten und vorausgegangene " +"Spaltenzuordnungen löschen" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "Verfügbar" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +#, fuzzy +msgid "BI SQL View" +msgstr "Bi SQL Ansichtsfeld" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "Bi SQL Ansichtsfeld" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" +"Haken Sie diese Box an, um eine 'Gruppiere nach' Option in der Suche " +"anzubieten" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Angelegt durch" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Angelegt am" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "Feldart" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "Index Name" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Modell" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "Modellbezeichnung" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Bezeichnung" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "Abfrage" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Sicherheit" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Auf Entwurf setzen" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Status" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" +"Status der Abfrage:\n" +"* 'Entwurf': Ungeprüft\n" +"* 'SQL gültig': SQL Abfrage ist geprüft und gültig" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "Technische Bezeichnung" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "Nicht verfügbar" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "Auswahl" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Entwurf" + +#~ msgid "SQL Valid" +#~ msgstr "SQL gültig" diff --git a/bi_sql_editor/i18n/el_GR.po b/bi_sql_editor/i18n/el_GR.po new file mode 100644 index 000000000..6386e4b38 --- /dev/null +++ b/bi_sql_editor/i18n/el_GR.po @@ -0,0 +1,645 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "Κωδικός" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Ονομασία" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Ασφάλεια" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/en_GB.po b/bi_sql_editor/i18n/en_GB.po new file mode 100644 index 000000000..ae7d117d7 --- /dev/null +++ b/bi_sql_editor/i18n/en_GB.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Created on" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Name" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Security" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Set to Draft" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Draft" diff --git a/bi_sql_editor/i18n/es.po b/bi_sql_editor/i18n/es.po new file mode 100644 index 000000000..cbe9fbcae --- /dev/null +++ b/bi_sql_editor/i18n/es.po @@ -0,0 +1,664 @@ +# 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: 2021-03-09 18:45+0000\n" +"Last-Translator: Ana Suárez \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "%m/%d/%Y %H:%M:%S UTC" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "%s (Copia)" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "%s Acceso %s" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "Acceso %s" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "Contexto Acción" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "Ajustes Acción" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "Grupos permitidos" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "Usuarios permitidos" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" +"Está seguro de que quiere establecer a borrador esta vista SQL. Eliminará la " +"vista materializada, y el mapeo anteriormente realizado con las columnas" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "Disponible" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "Vista BI SQL" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "Campo Vista BI SQL" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" +"Marque esta casilla si quiere crear la opción 'agrupar por' en la vista de " +"búsqueda" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" +"Marque esta casilla si quiere crear un índice en ese campo. Esto es " +"recomendable para campos que se pueden agrupar y filtrar, para reducir la " +"duración" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "Columna" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" +"Texto separado por comas. Posibles valores: \"graph\", \"pivot\" o \"tree\"" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "Contexto" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "Crear Vista SQL, Índices y Modelos" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "Crear UI" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "Cron Task que refrescará la vista materializada" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "Tamaño Base de Datos" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" +"Defina aquí un contexto que será utilizado por defecto, cuando se cree la " +"acción." + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +#, fuzzy +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" +"Defina aquí restricciones de acceso a los datos.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id." +"id]),('x_company_id','=',False)]." + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "Definición Regla Extra" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "Información Extra" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "Descripción del campo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "Tipo de campo" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Modelo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "Nombre del modelo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "Modelo Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "Consulta" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Cambiar a borrador" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "Nombre técnico" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "selección" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "No suscrito" diff --git a/bi_sql_editor/i18n/es_AR.po b/bi_sql_editor/i18n/es_AR.po new file mode 100644 index 000000000..3b7633330 --- /dev/null +++ b/bi_sql_editor/i18n/es_AR.po @@ -0,0 +1,645 @@ +# 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 (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/es_CL.po b/bi_sql_editor/i18n/es_CL.po new file mode 100644 index 000000000..e961fce54 --- /dev/null +++ b/bi_sql_editor/i18n/es_CL.po @@ -0,0 +1,645 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/es_CO.po b/bi_sql_editor/i18n/es_CO.po new file mode 100644 index 000000000..9bc1c5a3a --- /dev/null +++ b/bi_sql_editor/i18n/es_CO.po @@ -0,0 +1,645 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/es_CR.po b/bi_sql_editor/i18n/es_CR.po new file mode 100644 index 000000000..9e717cd0a --- /dev/null +++ b/bi_sql_editor/i18n/es_CR.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Cambiar a borrador" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Borrador" diff --git a/bi_sql_editor/i18n/es_DO.po b/bi_sql_editor/i18n/es_DO.po new file mode 100644 index 000000000..8b5df62fe --- /dev/null +++ b/bi_sql_editor/i18n/es_DO.po @@ -0,0 +1,645 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/es_EC.po b/bi_sql_editor/i18n/es_EC.po new file mode 100644 index 000000000..fad58b345 --- /dev/null +++ b/bi_sql_editor/i18n/es_EC.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Cambiar a borrador" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Borrador" diff --git a/bi_sql_editor/i18n/es_ES.po b/bi_sql_editor/i18n/es_ES.po new file mode 100644 index 000000000..7a812c764 --- /dev/null +++ b/bi_sql_editor/i18n/es_ES.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Borrador" diff --git a/bi_sql_editor/i18n/es_MX.po b/bi_sql_editor/i18n/es_MX.po new file mode 100644 index 000000000..4e9845948 --- /dev/null +++ b/bi_sql_editor/i18n/es_MX.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Modelo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Cambiar a borrador" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Borrador" diff --git a/bi_sql_editor/i18n/es_PE.po b/bi_sql_editor/i18n/es_PE.po new file mode 100644 index 000000000..dd4b0991b --- /dev/null +++ b/bi_sql_editor/i18n/es_PE.po @@ -0,0 +1,645 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/es_PY.po b/bi_sql_editor/i18n/es_PY.po new file mode 100644 index 000000000..27f29555b --- /dev/null +++ b/bi_sql_editor/i18n/es_PY.po @@ -0,0 +1,645 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/es_VE.po b/bi_sql_editor/i18n/es_VE.po new file mode 100644 index 000000000..e36dde7a9 --- /dev/null +++ b/bi_sql_editor/i18n/es_VE.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Provincia" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Borrador" diff --git a/bi_sql_editor/i18n/et.po b/bi_sql_editor/i18n/et.po new file mode 100644 index 000000000..88649271d --- /dev/null +++ b/bi_sql_editor/i18n/et.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nimi" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Turvalisus" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Sea mustandiks" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Mustand" diff --git a/bi_sql_editor/i18n/eu.po b/bi_sql_editor/i18n/eu.po new file mode 100644 index 000000000..9da7b5008 --- /dev/null +++ b/bi_sql_editor/i18n/eu.po @@ -0,0 +1,644 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Created on" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Model" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Izena" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/fa.po b/bi_sql_editor/i18n/fa.po new file mode 100644 index 000000000..97b4a2a61 --- /dev/null +++ b/bi_sql_editor/i18n/fa.po @@ -0,0 +1,644 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "شناسه" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "نام" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "امنیت" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/fi.po b/bi_sql_editor/i18n/fi.po new file mode 100644 index 000000000..39ee55c2d --- /dev/null +++ b/bi_sql_editor/i18n/fi.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Mall" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nimi" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Aseta luonnokseksi" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Tila" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Luonnos" diff --git a/bi_sql_editor/i18n/fr.po b/bi_sql_editor/i18n/fr.po new file mode 100644 index 000000000..3580932e0 --- /dev/null +++ b/bi_sql_editor/i18n/fr.po @@ -0,0 +1,711 @@ +# 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: 2017-08-31 11:56+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "%d/%m/%Y %H:%M:%S UTC" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "%s (Copie)" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "%s Accès %s" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "Accès %s" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +#, fuzzy +msgid "Action Settings" +msgstr "Options de Sélection" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "Groupes autorisés" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "Utilisateurs Autorisés" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" +"Etes vous sur de vouloir remettre la Vue SQL en brouillon. Cela supprimera " +"la vue (matérialisée), et tout le mapping préalablement réalisé sur les " +"colonnes" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "Disponible" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +#, fuzzy +msgid "BI SQL View" +msgstr "Vue SQL" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +#, fuzzy +msgid "Bi SQL View Field" +msgstr "Champs SQL" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" +"Cochez cette case pour créer une option 'Grouper Par' sur la vue de recherche" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" +"Cochez cette case pour créer un index SQL sur ce champ. Cela est recommandé " +"pour les champs de recherche et de regroupement pour réduire le temps " +"d'affichage." + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "Colonne" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" +"Texte séparé par des virgules. Valeurs posisbles : \"graph\", \"pivot\" ou " +"\"tree\"" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "Créer la vue SQL, les index et les modèles" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "Créer IU" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "Tâche CRON qui va rafraichir la vue matérialisée" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "Taille de la base de données" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" +"Définir ici les règles de restrictions d'accès aux données.\n" +" Faite attention à utilliser des noms de champs préfixés par 'x_'. Un 'ir." +"rule' global sera créé. Une règle classique en multi-companie est, par " +"exemple : \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "Définition de règle complémentaire" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "Information complémentaire" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "Description du champ" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "Type de champ" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" +"Pour les champs 'Many2one' de Odoo.\n" +"Champ du modèle lié" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" +"Pour les champs Odoo 'Selection'.\n" +" Liste des options, spécifié par une expression python, définition une liste " +"de paires de (clé, valeur). Par exemple : [('blue','Blue'), " +"('yellow','Yellow')]" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "Nom complet du modèle transiant qui sera créé." + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "Nom complet de la vue SQL" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "Type de Graphe" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +#, fuzzy +msgid "Has Group Changed" +msgstr "A un changement de groupe" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "Caché" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "Nom de l'index" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "Est 'Grouper Par'" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "Est un index" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "Est une vue matérialisée" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +#, fuzzy +msgid "Materialized Text" +msgstr "Materialized text" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "Mesure" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Modèle" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "Nom du modèle" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nom" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" +"Aucune colonne n'a été trouvée.\n" +"Les noms de colonnes doivent être préfixés par 'x_'." + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "Action Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "Cron Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "Vue graphique Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "Menu Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "Modèle Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "Vue Pivot de Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "Odoo Rule" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "Vue de recherche Odoo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "Vue Liste Odoo" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "Seules les vues graphique, pivot et arbre sont supportées" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "Ouvrir la vue" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +#, fuzzy +msgid "Preview SQL Expression" +msgstr "Valider l'expression SQL" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "Requête" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "Rafraichir la vue matérialisée" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "Rafraichir la vue matérialisée %s" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "Ligne" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "Définition de règle" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" +"Erreur SQL lors de la création de %s VIEW %s :\n" +" %s" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "Champs SQL" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "Requête SQL" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "SQL Reports" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" +"Requête SQL qui sera insérée dans la vue SQL. Faire attention à :\n" +" * Mettre un nom (AS) pour tous les champs à afficher, spécialement si vous " +"utilisez des fonctions SQL (comme EXTRACT, ...);\n" +" * Ne pas utiliser 'SELECT *' ou 'SELECT table.*';\n" +" * Préfixer le nom des colonnes à afficher par 'x_';" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "Type SQL" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "Type SQL dans la base de données" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "Vue SQL" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "Vue SQL et Modèle créés" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "Vues SQL" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Sécurité" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "Options de Sélection" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Remettre en brouillon" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "Taille de la vue matérialisée et de ses index" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Statut" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" +"Etat de la requête:\n" +" * 'En brouillon': non testée\n" +" * 'SQL Validé': La requête SQL a été vérifiée et est valide" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" +"Suffixe de la vue SQL. Le nom SQL complet sera calculé et préfixé par " +"'x_bi_sql_view_'. La syntaxe doit suivre : https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "Nom technique" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" +"Cette valeur sera utilisée comme nom du champ odoo et sera affichée aux " +"utilisateurs" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "Cela va créer une vue Odoo, une action et un menu" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" +"Cela va créer une vue SQL, basée sur la requête SQL et va créer le modèle " +"transiant correspondant et les champs, basés sur le paramétrage" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "Visibilité dans la liste" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" +"Type du champs Odoo qui sera créé. Garder vide si vous ne souhaitez pas " +"créer un nouveau champ. Si vide, ce champ ne sera pas affiché et ne sera pas " +"disponible pour les fonctions de recherche et de regroupement" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "Indisponible" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +#, fuzzy +msgid "Update Model Access" +msgstr "Mettre à jour les accès au modèle" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" +"Mettre à jour l'accès au modèle. Requis si vous changez la liste de groupes, " +"après avoir créer le modèle" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "Interface utilisateur" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "Valider l'expression SQL" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "Nom de la vue" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "Ordre des vues" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "Vues, Actions et menus créés" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, fuzzy, python-format +msgid "You can not create indexes on non materialized views" +msgstr "Tâche CRON qui va rafraichir la vue matérialisée" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "Vous pouvez seulement réaliser cette action sur des items SQL valides" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "boolean" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "char" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "date" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "datetime" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "float" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "integer" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "many2one" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "selection" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "sequence" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "Cela va rafraichir la vue matérialisée" + +#~ msgid "Draft" +#~ msgstr "Brouillon" + +#~ msgid "SQL Valid" +#~ msgstr "SQL Validé" + +#~ msgid "bi.sql.view" +#~ msgstr "bi.sql.view" + +#~ msgid "bi.sql.view.field" +#~ msgstr "bi.sql.view.field" + +#~ msgid "You can only unlink draft views" +#~ msgstr "Vous pouvez seulement supprimer des vues en brouillon" diff --git a/bi_sql_editor/i18n/fr_CA.po b/bi_sql_editor/i18n/fr_CA.po new file mode 100644 index 000000000..5e3a9985f --- /dev/null +++ b/bi_sql_editor/i18n/fr_CA.po @@ -0,0 +1,645 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "Identifiant" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Modèle" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nom" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/fr_CH.po b/bi_sql_editor/i18n/fr_CH.po new file mode 100644 index 000000000..a7e7c3476 --- /dev/null +++ b/bi_sql_editor/i18n/fr_CH.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Etat" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Brouillon" diff --git a/bi_sql_editor/i18n/gl.po b/bi_sql_editor/i18n/gl.po new file mode 100644 index 000000000..4449b8202 --- /dev/null +++ b/bi_sql_editor/i18n/gl.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nome" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Borrador" diff --git a/bi_sql_editor/i18n/gl_ES.po b/bi_sql_editor/i18n/gl_ES.po new file mode 100644 index 000000000..629cb6da4 --- /dev/null +++ b/bi_sql_editor/i18n/gl_ES.po @@ -0,0 +1,645 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/he.po b/bi_sql_editor/i18n/he.po new file mode 100644 index 000000000..0d55a83ee --- /dev/null +++ b/bi_sql_editor/i18n/he.po @@ -0,0 +1,644 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "מזהה" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "שם" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "אבטחה" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/hr.po b/bi_sql_editor/i18n/hr.po new file mode 100644 index 000000000..805b64cbd --- /dev/null +++ b/bi_sql_editor/i18n/hr.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Stvorio/la" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Stvoreno dana" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Zadnju izmjenu izvršio/la" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Model" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Naziv" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Sigurnost" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Postavi na nacrt" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Status" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "odabir" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Skica" diff --git a/bi_sql_editor/i18n/hr_HR.po b/bi_sql_editor/i18n/hr_HR.po new file mode 100644 index 000000000..a464bab69 --- /dev/null +++ b/bi_sql_editor/i18n/hr_HR.po @@ -0,0 +1,646 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Naziv" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Oblast/Županija" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/hu.po b/bi_sql_editor/i18n/hu.po new file mode 100644 index 000000000..d7978f662 --- /dev/null +++ b/bi_sql_editor/i18n/hu.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Modell, minta" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Név" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Biztonság" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Beállítás tervezetnek" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Állapot" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Tervezet" diff --git a/bi_sql_editor/i18n/id.po b/bi_sql_editor/i18n/id.po new file mode 100644 index 000000000..69b7db9ff --- /dev/null +++ b/bi_sql_editor/i18n/id.po @@ -0,0 +1,644 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nama" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Keamanan" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/it.po b/bi_sql_editor/i18n/it.po new file mode 100644 index 000000000..2349a69c8 --- /dev/null +++ b/bi_sql_editor/i18n/it.po @@ -0,0 +1,648 @@ +# 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: 2017-08-12 02:51+0000\n" +"Last-Translator: Paolo Valier , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "Disponibile" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Modello" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nome" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "Riga" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Sicurezza" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Imposta a Bozza" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Stato" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "Nome tecnico" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "Non disponibile" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Bozza" diff --git a/bi_sql_editor/i18n/ja.po b/bi_sql_editor/i18n/ja.po new file mode 100644 index 000000000..1a9c3314c --- /dev/null +++ b/bi_sql_editor/i18n/ja.po @@ -0,0 +1,647 @@ +# 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: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "作成日" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "名称" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "セキュリティ" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "ドラフトに設定" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "ドラフト" diff --git a/bi_sql_editor/i18n/ko.po b/bi_sql_editor/i18n/ko.po new file mode 100644 index 000000000..18ae5a70c --- /dev/null +++ b/bi_sql_editor/i18n/ko.po @@ -0,0 +1,644 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "작성일" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "이름" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "보안" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/lt.po b/bi_sql_editor/i18n/lt.po new file mode 100644 index 000000000..a8d8bbe0b --- /dev/null +++ b/bi_sql_editor/i18n/lt.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Pavadinimas" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Saugumas" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Nustatyti kaip juodraštį" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Juodraštis" diff --git a/bi_sql_editor/i18n/lt_LT.po b/bi_sql_editor/i18n/lt_LT.po new file mode 100644 index 000000000..8e273e987 --- /dev/null +++ b/bi_sql_editor/i18n/lt_LT.po @@ -0,0 +1,646 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/lv.po b/bi_sql_editor/i18n/lv.po new file mode 100644 index 000000000..2e009e204 --- /dev/null +++ b/bi_sql_editor/i18n/lv.po @@ -0,0 +1,645 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nosaukums" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Drošība" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/mk.po b/bi_sql_editor/i18n/mk.po new file mode 100644 index 000000000..6d6f3fea0 --- /dev/null +++ b/bi_sql_editor/i18n/mk.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Име" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Безбедност" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Подеси на нацрт" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Нацрт" diff --git a/bi_sql_editor/i18n/mn.po b/bi_sql_editor/i18n/mn.po new file mode 100644 index 000000000..2c4f8b4ac --- /dev/null +++ b/bi_sql_editor/i18n/mn.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Нэр" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Хамгаалалт" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Ноороглох" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Ноорог" diff --git a/bi_sql_editor/i18n/nb.po b/bi_sql_editor/i18n/nb.po new file mode 100644 index 000000000..ceee76364 --- /dev/null +++ b/bi_sql_editor/i18n/nb.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Navn" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Sikkerhet" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Sett som utkast" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Status" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Utkast" diff --git a/bi_sql_editor/i18n/nb_NO.po b/bi_sql_editor/i18n/nb_NO.po new file mode 100644 index 000000000..ca5eece7d --- /dev/null +++ b/bi_sql_editor/i18n/nb_NO.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Stat" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Drøfting" diff --git a/bi_sql_editor/i18n/nl.po b/bi_sql_editor/i18n/nl.po new file mode 100644 index 000000000..47856227f --- /dev/null +++ b/bi_sql_editor/i18n/nl.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Model" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Naam" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Zet op concept" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Staat/Provincie" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Concept" diff --git a/bi_sql_editor/i18n/nl_BE.po b/bi_sql_editor/i18n/nl_BE.po new file mode 100644 index 000000000..2f8e4cc11 --- /dev/null +++ b/bi_sql_editor/i18n/nl_BE.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Naam:" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Terugzetten naar Concept" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Concept" diff --git a/bi_sql_editor/i18n/nl_NL.po b/bi_sql_editor/i18n/nl_NL.po new file mode 100644 index 000000000..f1d446390 --- /dev/null +++ b/bi_sql_editor/i18n/nl_NL.po @@ -0,0 +1,646 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/pl.po b/bi_sql_editor/i18n/pl.po new file mode 100644 index 000000000..88f187e7d --- /dev/null +++ b/bi_sql_editor/i18n/pl.po @@ -0,0 +1,649 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nazwa" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Uprawnienia" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Stan" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Projekt" diff --git a/bi_sql_editor/i18n/pt.po b/bi_sql_editor/i18n/pt.po new file mode 100644 index 000000000..8068a4cfa --- /dev/null +++ b/bi_sql_editor/i18n/pt.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Modelo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nome" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Definir como rascunho" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Rascunho" diff --git a/bi_sql_editor/i18n/pt_BR.po b/bi_sql_editor/i18n/pt_BR.po new file mode 100644 index 000000000..0621f08bc --- /dev/null +++ b/bi_sql_editor/i18n/pt_BR.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "Identificação" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Modelo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nome" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Segurança" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Definir como Provisório" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Rascunho" diff --git a/bi_sql_editor/i18n/pt_PT.po b/bi_sql_editor/i18n/pt_PT.po new file mode 100644 index 000000000..7fc69b847 --- /dev/null +++ b/bi_sql_editor/i18n/pt_PT.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Modelo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nome" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Definir como rascunho" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Estado" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Rascunho" diff --git a/bi_sql_editor/i18n/ro.po b/bi_sql_editor/i18n/ro.po new file mode 100644 index 000000000..2a88a1253 --- /dev/null +++ b/bi_sql_editor/i18n/ro.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Nume" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Seteaza ca Ciorna" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Județ" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Schiță" diff --git a/bi_sql_editor/i18n/ru.po b/bi_sql_editor/i18n/ru.po new file mode 100644 index 000000000..75f2649b4 --- /dev/null +++ b/bi_sql_editor/i18n/ru.po @@ -0,0 +1,649 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Создан" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Модель" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Название" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Установить в \"Черновик\"" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Черновик" diff --git a/bi_sql_editor/i18n/sk.po b/bi_sql_editor/i18n/sk.po new file mode 100644 index 000000000..b4d3e9e78 --- /dev/null +++ b/bi_sql_editor/i18n/sk.po @@ -0,0 +1,644 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Meno" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Bezpečnosť" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/sl.po b/bi_sql_editor/i18n/sl.po new file mode 100644 index 000000000..297240040 --- /dev/null +++ b/bi_sql_editor/i18n/sl.po @@ -0,0 +1,689 @@ +# 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: 2017-08-31 11:56+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "%s (kopija)" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "%s Dostop %s" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "Dostop %s" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +#, fuzzy +msgid "Action Settings" +msgstr "Opcije izbire" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "Dovoljene skupine" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "Dovoljeni uporabniki" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "Na voljo" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +#, fuzzy +msgid "BI SQL View" +msgstr "SQL prikaz" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +#, fuzzy +msgid "Bi SQL View Field" +msgstr "SQL polja" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" +"Označite to polje če želite ustvariti opcijo 'združi po' v iskalnem prikazu" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" +"Označite to polje če želite ustvariti indeks na tistem polju. To je " +"priporočeno za iskalna in združevalna polja, da se zmanjša trajanje" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "Stolpec" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "Ustvari SQL prikaz, indekse in modele" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "Ustvari UI" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "Cron opravilo, ki bo osvežilo materializirani prikaz" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "Velikost podatkovne baze" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" +"Tu določite omejitve dostopa do podatkov.\n" +" Pazite, da uporabite predpono 'x_' v nazivu polja. Globalno 'ir.rule' " +"pravilo bo ustvarjeno. Tipično pravilo za strukturirano podjetje je " +"naprimer \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "Definicija dodatnega pravila" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "Dodatne informacije" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "Opis polja" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "Tip polja" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" +"Za polje 'Selection'.\n" +" Seznam opcij določenih kot Python izrazi, ki definirajo seznam parov (key, " +"label). Naprimer: [('blue','Blue'), ('yellow','Yellow')]" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "Polno kvalificirani naziv tranzicijskega modela, ki bo ustvarjen." + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "Polni naziv SQL prikaza" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "Tip grafa" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +#, fuzzy +msgid "Has Group Changed" +msgstr "Se je skupina spremenila" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "Naziv indeksa" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "je združi po" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "je indeks" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "Je materializirani prikaz" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +#, fuzzy +msgid "Materialized Text" +msgstr "Materializirano besedilo" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "Izmera" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Model" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "Naziv modela" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Naziv" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" +"Stolpec ni najden.\n" +"Naziv stolpca mora imeti predpono 'x_'." + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "Odoo dejanje" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "Odoo Cron" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "Odoo grafični prikaz" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "Odoo meni" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "Odoo model" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "Odoo pravilo" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "Odoo iskalni prikaz" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "Odoo prikaz" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +#, fuzzy +msgid "Preview SQL Expression" +msgstr "Overjanje SQL izraza" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "Poizvedba" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "Osveži materializirani prikaz" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "Osveži materializirani prikaz %s" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "Vrstica" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "Definicija pravila" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" +"SQL napaka pri nastanku %s VIEW %s :\n" +" %s" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "SQL polja" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "SQL poizvedba" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "SQL poročila" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" +"SQL zahtevek, ki bo vstavljen v prikaz. Poskrbite, da bo :\n" +" * nastavljen naziv za vsa izbrana polja, še posebej če uporabljate SQL " +"funkcijo (kot EXTRACT, ...);\n" +" * se ne uporablja 'SELECT *' ali 'SELECT table.*';\n" +" * naziv izbirnih stolpcev vseboval predpono 'x_';" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "SQL tip" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "SQL tip v bazi" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "SQL prikaz" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "SQL prikaz in model ustvarjena" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "SQL prikazi" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Varnost" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "Opcije izbire" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Nastavi kot osnutek" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "Velikost materializiranega prikaza in pripadajočih indeksov" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Stanje" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" +"Stanje zahtevka:\n" +" * 'Osnutek': ni testirano\n" +" * 'SQL veljaven': SQL zahtevek je bil preverjen in je veljaven" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "Tehnični naziv" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "To bo uporabljeno kot naziv Odoo polja, ki bo prikazan uporabnikom" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "To ustvari Odoo prikaz, dejanje in meni" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" +"To poskusi ustvariti SQL prikaz na osnovi SQL zahtevka in glede na " +"tranzicijski model in polja na osnovi nastavitev" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "Ni na voljo" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +#, fuzzy +msgid "Update Model Access" +msgstr "Posodobi dostope modela" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" +"Posodobi dostope modela. Potrebno, če ste spremenili seznam skupin po " +"nastanku modela" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "Uporabniški vmesnik" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "Overjanje SQL izraza" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "Naziv prikaza" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, fuzzy, python-format +msgid "You can not create indexes on non materialized views" +msgstr "Cron opravilo, ki bo osvežilo materializirani prikaz" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "To dejanje lahko obdelate le na SQL veljavnih postavkah" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "boolean" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "char" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "date" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "datetime" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "float" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "integer" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "many2one" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "selection" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "sequence" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "osvežitev materializiranega prikaza" + +#~ msgid "Draft" +#~ msgstr "Osnutek" + +#~ msgid "SQL Valid" +#~ msgstr "SQL veljaven" + +#~ msgid "You can only unlink draft views" +#~ msgstr "Razvezujete lahko le osnutke prikazov" diff --git a/bi_sql_editor/i18n/sr.po b/bi_sql_editor/i18n/sr.po new file mode 100644 index 000000000..b6703fc76 --- /dev/null +++ b/bi_sql_editor/i18n/sr.po @@ -0,0 +1,645 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Ime" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Bezbednost" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/sr@latin.po b/bi_sql_editor/i18n/sr@latin.po new file mode 100644 index 000000000..4b59daa8f --- /dev/null +++ b/bi_sql_editor/i18n/sr@latin.po @@ -0,0 +1,649 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Ime:" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Bezbednost" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Nacrt" diff --git a/bi_sql_editor/i18n/sv.po b/bi_sql_editor/i18n/sv.po new file mode 100644 index 000000000..f16161dd2 --- /dev/null +++ b/bi_sql_editor/i18n/sv.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Namn" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Säkerhet" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Sätt till preliminär" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Status" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Preliminär" diff --git a/bi_sql_editor/i18n/th.po b/bi_sql_editor/i18n/th.po new file mode 100644 index 000000000..39d316546 --- /dev/null +++ b/bi_sql_editor/i18n/th.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "รหัส" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "ชื่อ" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "ความปลอดภัย" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "กำหนดให้เป็นแบบร่าง" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "ฉบับร่าง" diff --git a/bi_sql_editor/i18n/tr.po b/bi_sql_editor/i18n/tr.po new file mode 100644 index 000000000..8008c20d7 --- /dev/null +++ b/bi_sql_editor/i18n/tr.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "Uygun" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Model" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Adı" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Güvenlik" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "Taslak Olarak Ayarlayın" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Durum" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "Teknik Ad" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Taslak" diff --git a/bi_sql_editor/i18n/tr_TR.po b/bi_sql_editor/i18n/tr_TR.po new file mode 100644 index 000000000..cbaf89b35 --- /dev/null +++ b/bi_sql_editor/i18n/tr_TR.po @@ -0,0 +1,649 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "Uygun" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "Kimlik" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "Tip" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "Tip adı" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Ad" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "Soru" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Güvenlik" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "Hal" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "Uygun değil" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Taslak" diff --git a/bi_sql_editor/i18n/uk.po b/bi_sql_editor/i18n/uk.po new file mode 100644 index 000000000..fa1037ed8 --- /dev/null +++ b/bi_sql_editor/i18n/uk.po @@ -0,0 +1,645 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Name" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Безпека" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/vi.po b/bi_sql_editor/i18n/vi.po new file mode 100644 index 000000000..b98b03031 --- /dev/null +++ b/bi_sql_editor/i18n/vi.po @@ -0,0 +1,647 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Tên" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "Bảo mật" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "Dự thảo" diff --git a/bi_sql_editor/i18n/vi_VN.po b/bi_sql_editor/i18n/vi_VN.po new file mode 100644 index 000000000..26f884294 --- /dev/null +++ b/bi_sql_editor/i18n/vi_VN.po @@ -0,0 +1,645 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "Tên" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" diff --git a/bi_sql_editor/i18n/zh_CN.po b/bi_sql_editor/i18n/zh_CN.po new file mode 100644 index 000000000..352fc2914 --- /dev/null +++ b/bi_sql_editor/i18n/zh_CN.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "ID" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "模型" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "名称" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "安全" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "设为草稿" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "状态" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "草稿" diff --git a/bi_sql_editor/i18n/zh_TW.po b/bi_sql_editor/i18n/zh_TW.po new file mode 100644 index 000000000..0b3fa2906 --- /dev/null +++ b/bi_sql_editor/i18n/zh_TW.po @@ -0,0 +1,648 @@ +# 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 +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%m/%d/%Y %H:%M:%S UTC" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_context +msgid "Action Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Action Settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__group_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__user_ids +msgid "Allowed Users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Are you sure you want to set to draft this SQL View. It will delete the " +"materialized view, and all the previous mapping realized with the columns" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__available +msgid "Available" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view +msgid "BI SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "Bi SQL View Field" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "" +"Check this box if you want to create a 'group by' option in the search view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "" +"Check this box if you want to create an index on that field. This is " +"recommended for searchable and groupable fields, to reduce duration" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__col +msgid "Column" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Context" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create SQL View, Indexes and Models" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Create UI" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__create_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__create_date +msgid "Created on" +msgstr "建立於" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Cron Task that will refresh the materialized view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__size +msgid "Database Size" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__action_context +msgid "" +"Define here a context that will be used by default, when creating the action." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__domain_force +msgid "" +"Define here access restriction to data.\n" +" Take care to use field name prefixed by 'x_'. A global 'ir.rule' will be " +"created. A typical Multi Company rule is for exemple \n" +" ['|', ('x_company_id','child_of', [user.company_id.id]),('x_company_id','='," +"False)]." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__display_name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__domain_force +msgid "Extra Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Extras Information" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "Field Description" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "Field Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +msgid "" +"For 'Many2one' Odoo field.\n" +" Comodel of the field." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__selection +msgid "" +"For 'Selection' Odoo field.\n" +" List of options, specified as a Python expression defining a list of (key, " +"label) pairs. For example: [('blue','Blue'), ('yellow','Yellow')]" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__model_name +msgid "Full Qualified Name of the transient model that will be created." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__view_name +msgid "Full name of the SQL view" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__graph_type +msgid "Graph Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__has_group_changed +msgid "Has Group Changed" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__hidden +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__id +msgid "ID" +msgstr "編號" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__index_name +msgid "Index Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_group_by +msgid "Is Group by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__is_index +msgid "Is Index" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__is_materialized +msgid "Is Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view____last_update +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field____last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__materialized_text +msgid "Materialized Text" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__measure +msgid "Measure" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__many2one_model_id +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__name +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__name +msgid "Name" +msgstr "名稱" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"No Column was found.\n" +"Columns name should be prefixed by 'x_'." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__action_id +msgid "Odoo Action" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__cron_id +msgid "Odoo Cron" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__graph_view_id +msgid "Odoo Graph View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__menu_id +msgid "Odoo Menu" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__model_id +msgid "Odoo Model" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__pivot_view_id +msgid "Odoo Pivot View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__rule_id +msgid "Odoo Rule" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__search_view_id +msgid "Odoo Search View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__tree_view_id +msgid "Odoo Tree View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Preview SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__query +msgid "Query" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Refresh Materialized View" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__graph_type__row +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Rule Definition" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"SQL Error while creating %s VIEW %s :\n" +" %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__bi_sql_view_field_ids +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Query" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_editor +msgid "SQL Reports" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__query +msgid "" +"SQL Request that will be inserted as the view. Take care to :\n" +" * set a name for all your selected fields, specially if you use SQL " +"function (like EXTRACT, ...);\n" +" * Do not use 'SELECT *' or 'SELECT table.*';\n" +" * prefix the name of the selectable columns by 'x_';" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__sql_type +msgid "SQL Type in the database" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__bi_sql_view_id +msgid "SQL View" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__model_valid +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Security" +msgstr "安全" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__selection +msgid "Selection Options" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Set to Draft" +msgstr "設置為草稿" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__size +msgid "Size of the materialized view and its indexes" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__state +msgid "State" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__state +msgid "" +"State of the Request:\n" +" * 'Draft': Not tested\n" +" * 'SQL Valid': SQL Request has been checked and is valid" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view__technical_name +msgid "" +"Suffix of the SQL view. SQL full name will be computed and prefixed by " +"'x_bi_sql_view_'. Syntax should follow: https://www.postgresql.org/docs/" +"current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__technical_name +msgid "Technical Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__field_description +msgid "This will be used as the name of the Odoo field, displayed for users" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "This will create Odoo View, Action and Menu" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"This will try to create an SQL View, based on the SQL request and the " +"according Transient Model and fields, based on settings" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__tree_visibility +msgid "Tree Visibility" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_field__ttype +msgid "" +"Type of the Odoo field that will be created. Keep empty if you don't want to " +"create a new field. If empty, this field will not be displayed neither " +"available for search or group by function" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__tree_visibility__unavailable +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "" +"Update Model Access. Required if you changed groups list after having " +"created the model" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Validate SQL Expression" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_name +msgid "View Name" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__view_order +msgid "View Order" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view__state__ui_valid +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:0 +#, python-format +msgid "You can not create indexes on non materialized views" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "You can only process this action on SQL Valid items" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:0 +#, python-format +msgid "" +"You can only unlink draft views.If you want to delete them, first set them " +"to draft." +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__boolean +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__char +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__date +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__datetime +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__float +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__integer +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__many2one +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields.selection,name:bi_sql_editor.selection__bi_sql_view_field__ttype__selection +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view__sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field__sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model_terms:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Draft" +#~ msgstr "草稿" diff --git a/bi_sql_editor/models/__init__.py b/bi_sql_editor/models/__init__.py new file mode 100644 index 000000000..ef99aabca --- /dev/null +++ b/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/bi_sql_editor/models/bi_sql_view.py b/bi_sql_editor/models/bi_sql_view.py new file mode 100644 index 000000000..6c5627f76 --- /dev/null +++ b/bi_sql_editor/models/bi_sql_view.py @@ -0,0 +1,766 @@ +# Copyright (C) 2017 - Today: GRAP (http://www.grap.coop) +# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +import logging +from datetime import datetime + +from psycopg2 import ProgrammingError + +from odoo import SUPERUSER_ID, _, api, fields, models +from odoo.exceptions import UserError +from odoo.tools import pycompat, sql, table_columns +from odoo.tools.safe_eval import safe_eval + +from odoo.addons.base.models.ir_model import IrModel + +_logger = logging.getLogger(__name__) + + +@api.model +def _instanciate(self, model_data): + """Return a class for the custom model given by + parameters ``model_data``.""" + # This monkey patch is meant to avoid create/search tables for those + # materialized views. Doing "super" doesn't work. + class CustomModel(models.Model): + _name = pycompat.to_text(model_data["model"]) + _description = model_data["name"] + _module = False + _custom = True + _transient = bool(model_data["transient"]) + __doc__ = model_data["info"] + + # START OF patch + if model_data["model"].startswith(BiSQLView._model_prefix): + CustomModel._auto = False + CustomModel._abstract = True + # END of patch + return CustomModel + + +IrModel._instanciate = _instanciate + + +class BiSQLView(models.Model): + _name = "bi.sql.view" + _description = "BI SQL View" + _order = "sequence" + _inherit = ["sql.request.mixin"] + + _sql_prefix = "x_bi_sql_view_" + + _model_prefix = "x_bi_sql_view." + + _sql_request_groups_relation = "bi_sql_view_groups_rel" + + _sql_request_users_relation = "bi_sql_view_users_rel" + + _STATE_SQL_EDITOR = [ + ("model_valid", "SQL View and Model Created"), + ("ui_valid", "Views, Action and Menu Created"), + ] + + technical_name = fields.Char( + string="Technical Name", + required=True, + help="Suffix of the SQL view. SQL full name will be computed and" + " prefixed by 'x_bi_sql_view_'. Syntax should follow: " + "https://www.postgresql.org/" + "docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS", + ) + + view_name = fields.Char( + string="View Name", + compute="_compute_view_name", + readonly=True, + store=True, + help="Full name of the SQL view", + ) + + model_name = fields.Char( + string="Model Name", + compute="_compute_model_name", + readonly=True, + store=True, + help="Full Qualified Name of the transient model that will" " be created.", + ) + + is_materialized = fields.Boolean( + string="Is Materialized View", + default=True, + readonly=True, + states={"draft": [("readonly", False)], "sql_valid": [("readonly", False)]}, + ) + + materialized_text = fields.Char(compute="_compute_materialized_text", store=True) + + size = fields.Char( + string="Database Size", + readonly=True, + help="Size of the materialized view and its indexes", + ) + + state = fields.Selection(selection_add=_STATE_SQL_EDITOR) + + view_order = fields.Char( + string="View Order", + required=True, + readonly=False, + states={"ui_valid": [("readonly", True)]}, + default="pivot,graph,tree", + help="Comma-separated text. Possible values:" ' "graph", "pivot" or "tree"', + ) + + query = fields.Text( + help="SQL Request that will be inserted as the view. Take care to :\n" + " * set a name for all your selected fields, specially if you use" + " SQL function (like EXTRACT, ...);\n" + " * Do not use 'SELECT *' or 'SELECT table.*';\n" + " * prefix the name of the selectable columns by 'x_';", + default="SELECT\n" " my_field as x_my_field\n" "FROM my_table", + ) + + domain_force = fields.Text( + string="Extra Rule Definition", + default="[]", + readonly=True, + help="Define here access restriction to data.\n" + " Take care to use field name prefixed by 'x_'." + " A global 'ir.rule' will be created." + " A typical Multi Company rule is for exemple \n" + " ['|', ('x_company_id','child_of', [user.company_id.id])," + "('x_company_id','=',False)].", + states={"draft": [("readonly", False)], "sql_valid": [("readonly", False)]}, + ) + + computed_action_context = fields.Text( + compute="_compute_computed_action_context", string="Computed Action Context" + ) + + action_context = fields.Text( + string="Action Context", + default="{}", + readonly=True, + help="Define here a context that will be used" + " by default, when creating the action.", + states={ + "draft": [("readonly", False)], + "sql_valid": [("readonly", False)], + "model_valid": [("readonly", False)], + }, + ) + + has_group_changed = fields.Boolean(copy=False) + + bi_sql_view_field_ids = fields.One2many( + string="SQL Fields", + comodel_name="bi.sql.view.field", + inverse_name="bi_sql_view_id", + ) + + model_id = fields.Many2one( + string="Odoo Model", comodel_name="ir.model", readonly=True + ) + + tree_view_id = fields.Many2one( + string="Odoo Tree View", comodel_name="ir.ui.view", readonly=True + ) + + graph_view_id = fields.Many2one( + string="Odoo Graph View", comodel_name="ir.ui.view", readonly=True + ) + + pivot_view_id = fields.Many2one( + string="Odoo Pivot View", comodel_name="ir.ui.view", readonly=True + ) + + search_view_id = fields.Many2one( + string="Odoo Search View", comodel_name="ir.ui.view", readonly=True + ) + + action_id = fields.Many2one( + string="Odoo Action", comodel_name="ir.actions.act_window", readonly=True + ) + + menu_id = fields.Many2one( + string="Odoo Menu", comodel_name="ir.ui.menu", readonly=True + ) + + cron_id = fields.Many2one( + string="Odoo Cron", + comodel_name="ir.cron", + readonly=True, + help="Cron Task that will refresh the materialized view", + ) + + rule_id = fields.Many2one(string="Odoo Rule", comodel_name="ir.rule", readonly=True) + + group_ids = fields.Many2many( + comodel_name="res.groups", + readonly=True, + states={"draft": [("readonly", False)], "sql_valid": [("readonly", False)]}, + ) + + sequence = fields.Integer(string="sequence") + + # Constrains Section + @api.constrains("is_materialized") + def _check_index_materialized(self): + for rec in self.filtered(lambda x: not x.is_materialized): + if rec.bi_sql_view_field_ids.filtered(lambda x: x.is_index): + raise UserError( + _("You can not create indexes on non materialized views") + ) + + @api.constrains("view_order") + def _check_view_order(self): + for rec in self: + if rec.view_order: + for vtype in rec.view_order.split(","): + if vtype not in ("graph", "pivot", "tree"): + raise UserError( + _("Only graph, pivot or tree views are supported") + ) + + # Compute Section + @api.depends("bi_sql_view_field_ids.graph_type") + def _compute_computed_action_context(self): + for rec in self: + action = { + "pivot_measures": [], + "pivot_row_groupby": [], + "pivot_column_groupby": [], + } + for field in rec.bi_sql_view_field_ids.filtered( + lambda x: x.graph_type == "measure" + ): + action["pivot_measures"].append(field.name) + + for field in rec.bi_sql_view_field_ids.filtered( + lambda x: x.graph_type == "row" + ): + action["pivot_row_groupby"].append(field.name) + + for field in rec.bi_sql_view_field_ids.filtered( + lambda x: x.graph_type == "col" + ): + action["pivot_column_groupby"].append(field.name) + + rec.computed_action_context = str(action) + + @api.depends("is_materialized") + def _compute_materialized_text(self): + for sql_view in self: + sql_view.materialized_text = ( + sql_view.is_materialized and "MATERIALIZED" or "" + ) + + @api.depends("technical_name") + def _compute_view_name(self): + for sql_view in self: + sql_view.view_name = "{}{}".format( + sql_view._sql_prefix, + sql_view.technical_name, + ) + + @api.depends("technical_name") + def _compute_model_name(self): + for sql_view in self: + sql_view.model_name = "{}{}".format( + sql_view._model_prefix, + sql_view.technical_name, + ) + + @api.onchange("group_ids") + def onchange_group_ids(self): + if self.state not in ("draft", "sql_valid"): + self.has_group_changed = True + + # Overload Section + def write(self, vals): + res = super(BiSQLView, self).write(vals) + if vals.get("sequence", False): + for rec in self.filtered(lambda x: x.menu_id): + rec.menu_id.sequence = rec.sequence + return res + + def unlink(self): + if any(view.state not in ("draft", "sql_valid") for view in self): + raise UserError( + _( + "You can only unlink draft views." + "If you want to delete them, first set them to draft." + ) + ) + self.cron_id.unlink() + return super(BiSQLView, self).unlink() + + def copy(self, default=None): + self.ensure_one() + default = dict(default or {}) + default.update( + { + "name": _("%s (Copy)") % self.name, + "technical_name": "%s_copy" % self.technical_name, + } + ) + return super(BiSQLView, self).copy(default=default) + + # Action Section + def button_create_sql_view_and_model(self): + for sql_view in self.filtered(lambda x: x.state == "sql_valid"): + # Create ORM and access + sql_view._create_model_and_fields() + sql_view._create_model_access() + + # Create SQL View and indexes + sql_view._create_view() + sql_view._create_index() + + if sql_view.is_materialized: + if not sql_view.cron_id: + sql_view.cron_id = ( + self.env["ir.cron"].create(sql_view._prepare_cron()).id + ) + else: + sql_view.cron_id.active = True + sql_view.state = "model_valid" + + def button_set_draft(self): + for sql_view in self.filtered(lambda x: x.state != "draft"): + sql_view.menu_id.unlink() + sql_view.action_id.unlink() + sql_view.tree_view_id.unlink() + sql_view.graph_view_id.unlink() + sql_view.pivot_view_id.unlink() + sql_view.search_view_id.unlink() + + if sql_view.state in ("model_valid", "ui_valid"): + # Drop SQL View (and indexes by cascade) + if sql_view.is_materialized: + sql_view._drop_view() + + if sql_view.cron_id: + sql_view.cron_id.active = False + + # Drop ORM + sql_view._drop_model_and_fields() + + sql_view.has_group_changed = False + super(BiSQLView, sql_view).button_set_draft() + return True + + def button_create_ui(self): + self.tree_view_id = self.env["ir.ui.view"].create(self._prepare_tree_view()).id + self.graph_view_id = ( + self.env["ir.ui.view"].create(self._prepare_graph_view()).id + ) + self.pivot_view_id = ( + self.env["ir.ui.view"].create(self._prepare_pivot_view()).id + ) + self.search_view_id = ( + self.env["ir.ui.view"].create(self._prepare_search_view()).id + ) + self.action_id = ( + self.env["ir.actions.act_window"].create(self._prepare_action()).id + ) + self.menu_id = self.env["ir.ui.menu"].create(self._prepare_menu()).id + self.write({"state": "ui_valid"}) + + def button_update_model_access(self): + self._drop_model_access() + self._create_model_access() + self.write({"has_group_changed": False}) + + def button_refresh_materialized_view(self): + self._refresh_materialized_view() + + def button_open_view(self): + return { + "type": "ir.actions.act_window", + "res_model": self.model_id.model, + "search_view_id": self.search_view_id.id, + "view_mode": self.action_id.view_mode, + } + + # Prepare Function + def _prepare_model(self): + self.ensure_one() + field_id = [] + for field in self.bi_sql_view_field_ids.filtered( + lambda x: x.field_description is not False + ): + field_id.append([0, False, field._prepare_model_field()]) + return { + "name": self.name, + "model": self.model_name, + "access_ids": [], + "field_id": field_id, + } + + def _prepare_model_access(self): + self.ensure_one() + res = [] + for group in self.group_ids: + res.append( + { + "name": _("%s Access %s") % (self.model_name, group.full_name), + "model_id": self.model_id.id, + "group_id": group.id, + "perm_read": True, + "perm_create": False, + "perm_write": False, + "perm_unlink": False, + } + ) + return res + + def _prepare_cron(self): + now = datetime.now() + return { + "name": _("Refresh Materialized View %s") % self.view_name, + "user_id": SUPERUSER_ID, + "model_id": self.env["ir.model"] + .search([("model", "=", self._name)], limit=1) + .id, + "state": "code", + "code": "model._refresh_materialized_view_cron(%s)" % self.ids, + "numbercall": -1, + "interval_number": 1, + "interval_type": "days", + "nextcall": datetime(now.year, now.month, now.day + 1), + "active": True, + } + + def _prepare_rule(self): + self.ensure_one() + return { + "name": _("Access %s") % self.name, + "model_id": self.model_id.id, + "domain_force": self.domain_force, + "global": True, + } + + def _prepare_tree_view(self): + self.ensure_one() + return { + "name": self.name, + "type": "tree", + "model": self.model_id.model, + "arch": """""" + """{}""" + """""".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 %s VIEW %s :\n %s") + % (sql_view.materialized_text, sql_view.view_name, str(e)) + ) + + def _create_index(self): + for sql_view in self: + for sql_field in sql_view.bi_sql_view_field_ids.filtered( + lambda x: x.is_index is True + ): + self._log_execute( + "CREATE INDEX %s ON %s (%s);" + % (sql_field.index_name, sql_view.view_name, sql_field.name) + ) + + def _create_model_and_fields(self): + for sql_view in self: + # Create model + sql_view.model_id = self.env["ir.model"].create(self._prepare_model()).id + sql_view.rule_id = self.env["ir.rule"].create(self._prepare_rule()).id + # Drop table, created by the ORM + if sql.table_exists(self._cr, sql_view.view_name): + req = "DROP TABLE %s" % sql_view.view_name + self._log_execute(req) + + def _create_model_access(self): + for sql_view in self: + for item in sql_view._prepare_model_access(): + self.env["ir.model.access"].create(item) + + def _drop_model_access(self): + for sql_view in self: + self.env["ir.model.access"].search( + [("model_id", "=", sql_view.model_name)] + ).unlink() + + def _drop_model_and_fields(self): + for sql_view in self: + if sql_view.rule_id: + sql_view.rule_id.unlink() + if sql_view.model_id: + sql_view.model_id.with_context(_force_unlink=True).unlink() + + def _hook_executed_request(self): + self.ensure_one() + req = ( + """ + SELECT attnum, + attname AS column, + format_type(atttypid, atttypmod) AS type + FROM pg_attribute + WHERE attrelid = '%s'::regclass + AND NOT attisdropped + AND attnum > 0 + ORDER BY attnum;""" + % self.view_name + ) + self._log_execute(req) + return self.env.cr.fetchall() + + def _prepare_request_check_execution(self): + self.ensure_one() + return "CREATE VIEW {} AS ({});".format(self.view_name, self.query) + + def _prepare_request_for_execution(self): + self.ensure_one() + query = ( + """ + SELECT + CAST(row_number() OVER () as integer) AS id, + CAST(Null as timestamp without time zone) as create_date, + CAST(Null as integer) as create_uid, + CAST(Null as timestamp without time zone) as write_date, + CAST(Null as integer) as write_uid, + my_query.* + FROM + (%s) as my_query + """ + % self.query + ) + return "CREATE {} VIEW {} AS ({});".format( + self.materialized_text, + self.view_name, + query, + ) + + def _check_execution(self): + """Ensure that the query is valid, trying to execute it. + a non materialized view is created for this check. + A rollback is done at the end. + After the execution, and before the rollback, an analysis of + the database structure is done, to know fields type.""" + self.ensure_one() + sql_view_field_obj = self.env["bi.sql.view.field"] + columns = super(BiSQLView, self)._check_execution() + field_ids = [] + for column in columns: + existing_field = self.bi_sql_view_field_ids.filtered( + lambda x: x.name == column[1] + ) + if existing_field: + # Update existing field + field_ids.append(existing_field.id) + existing_field.write({"sequence": column[0], "sql_type": column[2]}) + else: + # Create a new one if name is prefixed by x_ + if column[1][:2] == "x_": + field_ids.append( + sql_view_field_obj.create( + { + "sequence": column[0], + "name": column[1], + "sql_type": column[2], + "bi_sql_view_id": self.id, + } + ).id + ) + + # Drop obsolete view field + self.bi_sql_view_field_ids.filtered(lambda x: x.id not in field_ids).unlink() + + if not self.bi_sql_view_field_ids: + raise UserError( + _("No Column was found.\n" "Columns name should be prefixed by 'x_'.") + ) + + return columns + + @api.model + def _refresh_materialized_view_cron(self, view_ids): + sql_views = self.search( + [ + ("is_materialized", "=", True), + ("state", "in", ["model_valid", "ui_valid"]), + ("id", "in", view_ids), + ] + ) + return sql_views._refresh_materialized_view() + + def _refresh_materialized_view(self): + for sql_view in self.filtered(lambda x: x.is_materialized): + req = "REFRESH {} VIEW {}".format( + sql_view.materialized_text, + sql_view.view_name, + ) + self._log_execute(req) + sql_view._refresh_size() + if sql_view.action_id: + # Alter name of the action, to display last refresh + # datetime of the materialized view + sql_view.action_id.with_context( + lang=self.env.user.lang + ).name = sql_view._prepare_action_name() + + def _refresh_size(self): + for sql_view in self: + req = "SELECT pg_size_pretty(pg_total_relation_size('%s'));" % ( + sql_view.view_name + ) + self._log_execute(req) + sql_view.size = self.env.cr.fetchone()[0] + + def check_manual_fields(self, model): + # check the fields we need are defined on self, to stop it going + # early on install / startup - particularly problematic during upgrade + if "group_operator" in table_columns( + self.env.cr, "bi_sql_view_field" + ) and model._name.startswith(self._model_prefix): + # Use SQL instead of ORM, as ORM might not be fully initialised - + # we have no control over the order that fields are defined! + # We are not concerned about user security rules. + self.env.cr.execute( + """ +SELECT + f.name, + f.ttype, + f.group_operator +FROM + bi_sql_view v + LEFT JOIN bi_sql_view_field f ON f.bi_sql_view_id = v.id +WHERE + v.model_name = %s +; + """, + (model._name,), + ) + sql_fields = self.env.cr.fetchall() + + for sql_field in sql_fields: + if ( + sql_field[0] in model._fields + and sql_field[1] in ("integer", "float") + and sql_field[2] + ): + model._fields[sql_field[0]].group_operator = sql_field[2] + + def button_preview_sql_expression(self): + self.button_validate_sql_expression() + res = self._execute_sql_request() + raise UserError("\n".join(map(lambda x: str(x), res[:100]))) diff --git a/bi_sql_editor/models/bi_sql_view_field.py b/bi_sql_editor/models/bi_sql_view_field.py new file mode 100644 index 000000000..1689f7a32 --- /dev/null +++ b/bi_sql_editor/models/bi_sql_view_field.py @@ -0,0 +1,265 @@ +# Copyright (C) 2017 - Today: GRAP (http://www.grap.coop) +# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +import re + +from odoo import _, api, fields, models +from odoo.exceptions import UserError + + +class BiSQLViewField(models.Model): + _name = "bi.sql.view.field" + _description = "Bi SQL View Field" + _order = "sequence" + + _TTYPE_SELECTION = [ + ("boolean", "boolean"), + ("char", "char"), + ("date", "date"), + ("datetime", "datetime"), + ("float", "float"), + ("integer", "integer"), + ("many2one", "many2one"), + ("selection", "selection"), + ] + + _GRAPH_TYPE_SELECTION = [ + ("col", "Column"), + ("row", "Row"), + ("measure", "Measure"), + ] + + _TREE_VISIBILITY_SELECTION = [ + ("unavailable", "Unavailable"), + ("hidden", "Hidden"), + ("available", "Available"), + ] + + # Mapping to guess Odoo field type, from SQL column type + _SQL_MAPPING = { + "boolean": "boolean", + "bigint": "integer", + "integer": "integer", + "double precision": "float", + "numeric": "float", + "text": "char", + "character varying": "char", + "date": "date", + "timestamp without time zone": "datetime", + } + + _GROUP_OPERATOR_SELECTION = [ + ("sum", "Sum"), + ("avg", "Average"), + ("min", "Minimum"), + ("max", "Maximum"), + ] + + name = fields.Char(string="Name", required=True, readonly=True) + + sql_type = fields.Char( + string="SQL Type", required=True, readonly=True, help="SQL Type in the database" + ) + + sequence = fields.Integer(string="sequence", required=True, readonly=True) + + bi_sql_view_id = fields.Many2one( + string="SQL View", comodel_name="bi.sql.view", ondelete="cascade" + ) + + is_index = fields.Boolean( + string="Is Index", + help="Check this box if you want to create" + " an index on that field. This is recommended for searchable and" + " groupable fields, to reduce duration", + ) + + is_group_by = fields.Boolean( + string="Is Group by", + help="Check this box if you want to create" + " a 'group by' option in the search view", + ) + + index_name = fields.Char(string="Index Name", compute="_compute_index_name") + + graph_type = fields.Selection(string="Graph Type", selection=_GRAPH_TYPE_SELECTION) + + tree_visibility = fields.Selection( + string="Tree Visibility", + selection=_TREE_VISIBILITY_SELECTION, + default="available", + required=True, + ) + + field_description = fields.Char( + string="Field Description", + help="This will be used as the name" " of the Odoo field, displayed for users", + ) + + ttype = fields.Selection( + string="Field Type", + selection=_TTYPE_SELECTION, + help="Type of the" + " Odoo field that will be created. Keep empty if you don't want to" + " create a new field. If empty, this field will not be displayed" + " neither available for search or group by function", + ) + + selection = fields.Text( + string="Selection Options", + default="[]", + help="For 'Selection' Odoo field.\n" + " List of options, specified as a Python expression defining a list of" + " (key, label) pairs. For example:" + " [('blue','Blue'), ('yellow','Yellow')]", + ) + + many2one_model_id = fields.Many2one( + comodel_name="ir.model", + string="Model", + help="For 'Many2one' Odoo field.\n" " Comodel of the field.", + ) + + group_operator = fields.Selection( + string="Group Operator", + selection=_GROUP_OPERATOR_SELECTION, + help="By default, Odoo will sum the values when grouping. If you wish " + "to alter the behaviour, choose an alternate Group Operator", + ) + + # Constrains Section + @api.constrains("is_index") + def _check_index_materialized(self): + for rec in self.filtered(lambda x: x.is_index): + if not rec.bi_sql_view_id.is_materialized: + raise UserError( + _("You can not create indexes on non materialized views") + ) + + # Compute Section + def _compute_index_name(self): + for sql_field in self: + sql_field.index_name = "{}_{}".format( + sql_field.bi_sql_view_id.view_name, + sql_field.name, + ) + + # Overload Section + @api.model + def create(self, vals): + field_without_prefix = vals["name"][2:] + # guess field description + field_description = re.sub( + r"\w+", + lambda m: m.group(0).capitalize(), + field_without_prefix.replace("_id", "").replace("_", " "), + ) + + # Guess ttype + # Don't execute as simple .get() in the dict to manage + # correctly the type 'character varying(x)' + ttype = False + for k, v in self._SQL_MAPPING.items(): + if k in vals["sql_type"]: + ttype = v + + # Guess many2one_model_id + many2one_model_id = False + if vals["sql_type"] == "integer" and (vals["name"][-3:] == "_id"): + ttype = "many2one" + model_name = self._model_mapping().get(field_without_prefix, "") + many2one_model_id = ( + self.env["ir.model"].search([("model", "=", model_name)]).id + ) + + vals.update( + { + "ttype": ttype, + "field_description": field_description, + "many2one_model_id": many2one_model_id, + } + ) + return super(BiSQLViewField, self).create(vals) + + # Custom Section + @api.model + def _model_mapping(self): + """Return dict of key value, to try to guess the model based on a + field name. Sample : + {'account_id': 'account.account'; 'product_id': 'product.product'} + """ + relation_fields = self.env["ir.model.fields"].search( + [("ttype", "=", "many2one")] + ) + res = {} + keys_to_pop = [] + for field in relation_fields: + if field.name in res and res.get(field.name) != field.relation: + # The field name is not predictive + keys_to_pop.append(field.name) + else: + res.update({field.name: field.relation}) + + for key in list(set(keys_to_pop)): + res.pop(key) + + return res + + def _prepare_model_field(self): + self.ensure_one() + return { + "name": self.name, + "field_description": self.field_description, + "model_id": self.bi_sql_view_id.model_id.id, + "ttype": self.ttype, + "selection": self.ttype == "selection" and self.selection or False, + "relation": self.ttype == "many2one" + and self.many2one_model_id.model + or False, + } + + def _prepare_tree_field(self): + self.ensure_one() + res = "" + if self.field_description and self.tree_visibility != "unavailable": + res = """""".format( + self.name, self.tree_visibility == "hidden" and 'invisible="1"' or "" + ) + return res + + def _prepare_graph_field(self): + self.ensure_one() + res = "" + if self.graph_type and self.field_description: + res = """\n""".format( + self.name, self.graph_type + ) + return res + + def _prepare_pivot_field(self): + self.ensure_one() + res = "" + if self.field_description: + graph_type_text = self.graph_type and 'type="%s"' % (self.graph_type) or "" + res = """\n""".format(self.name, graph_type_text) + return res + + def _prepare_search_field(self): + self.ensure_one() + res = "" + if self.field_description: + res = """\n""".format(self.name) + return res + + def _prepare_search_filter_field(self): + self.ensure_one() + res = "" + if self.field_description and self.is_group_by: + res = """\n""" % ( + self.name, + self.field_description, + self.name, + ) + return res diff --git a/bi_sql_editor/models/ir_model.py b/bi_sql_editor/models/ir_model.py new file mode 100644 index 000000000..e3d7ed1f1 --- /dev/null +++ b/bi_sql_editor/models/ir_model.py @@ -0,0 +1,9 @@ +from odoo import models + + +class IrModelFields(models.Model): + _inherit = "ir.model.fields" + + def _add_manual_fields(self, model): + super()._add_manual_fields(model) + self.env["bi.sql.view"].check_manual_fields(model) diff --git a/bi_sql_editor/readme/CONFIGURE.rst b/bi_sql_editor/readme/CONFIGURE.rst new file mode 100644 index 000000000..fee3c6740 --- /dev/null +++ b/bi_sql_editor/readme/CONFIGURE.rst @@ -0,0 +1,38 @@ +To configure this module, you need to: + +* Go to Settings / Technical / Database Structure / SQL Views + +* tip your SQL request + + .. figure:: ../static/description/01_sql_request.png + :width: 800 px + +* Select the group(s) that could have access to the view + + .. figure:: ../static/description/02_security_access.png + :width: 800 px + +* Click on the button 'Clean and Check Request' + +* Once the sql request checked, the module analyses the column of the view, + and propose field mapping. For each field, you can decide to create an index + and set if it will be displayed on the pivot graph as a column, a row or a + measure. + + .. figure:: ../static/description/03_field_mapping.png + :width: 800 px + +* Click on the button 'Create SQL View, Indexes and Models'. (this step could + take a while, if view is materialized) + +* If it's a MATERIALIZED view: + + * a cron task is created to refresh + the view. You can so define the frequency of the refresh. + * the size of view (and the indexes is displayed) + + .. figure:: ../static/description/04_materialized_view_setting.png + :width: 800 px + +* Finally, click on 'Create UI', to create new menu, action, graph view and + search view. diff --git a/bi_sql_editor/readme/CONTRIBUTORS.rst b/bi_sql_editor/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..1b4d1c030 --- /dev/null +++ b/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/bi_sql_editor/readme/DESCRIPTION.rst b/bi_sql_editor/readme/DESCRIPTION.rst new file mode 100644 index 000000000..33d6b20e8 --- /dev/null +++ b/bi_sql_editor/readme/DESCRIPTION.rst @@ -0,0 +1,40 @@ +This module extends the functionality of reporting, to support creation +of extra custom reports. +It allows user to write a custom SQL request. (Generally, admin users) + +Once written, a new model is generated, and user can map the selected field +with odoo fields. +Then user ends the process, creating new menu, action and graph view. + +Technically, the module create SQL View (or materialized view, if option is +checked). Materialized view duplicates datas, but request are fastest. If +materialized view is enabled, this module will create a cron task to refresh +the data). + +By default, users member of 'SQL Request / User' can see all the views. +You can specify extra groups that have the right to access to a specific view. + +Warning +------- +This module is intended for technician people in a company and for Odoo integrators. + +It requires the user to know SQL syntax and Odoo models. + +If you don't have such skills, do not try to use this module specially on a production +environment. + +Use Cases +--------- + +this module is interesting for the following use cases + +* You want to realize technical SQL requests, that Odoo framework doesn't allow + (For exemple, UNION with many SELECT) A typical use case is if you want to have + Sale Orders and PoS Orders datas in a same table + +* You want to customize an Odoo report, removing some useless fields and adding + some custom ones. In that case, you can simply select the fields of the original + report (sale.report model for exemple), and add your custom fields + +* You have a lot of data, and classical SQL Views have very bad performance. + In that case, MATERIALIZED VIEW will be a good solution to reduce display duration diff --git a/bi_sql_editor/readme/INSTALL.rst b/bi_sql_editor/readme/INSTALL.rst new file mode 100644 index 000000000..6ccbf3b4c --- /dev/null +++ b/bi_sql_editor/readme/INSTALL.rst @@ -0,0 +1,2 @@ +* You must put this module as `server_wide_modules` in your odoo configuration file + or add '--load=bi_sql_editor' if you start odoo in command line. diff --git a/bi_sql_editor/readme/USAGE.rst b/bi_sql_editor/readme/USAGE.rst new file mode 100644 index 000000000..d3ce1491e --- /dev/null +++ b/bi_sql_editor/readme/USAGE.rst @@ -0,0 +1,13 @@ +To use this module, you need to: + +#. Go to 'Reporting' / 'Custom Reports' + +#. Select the desired report + + .. figure:: ../static/description/05_reporting_pivot.png + :width: 800 px + +* You can switch to 'Pie' chart or 'Line Chart' as any report, + + .. figure:: ../static/description/05_reporting_pie.png + :width: 800 px diff --git a/bi_sql_editor/security/ir.model.access.csv b/bi_sql_editor/security/ir.model.access.csv new file mode 100644 index 000000000..ca78a1edd --- /dev/null +++ b/bi_sql_editor/security/ir.model.access.csv @@ -0,0 +1,6 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_bi_sql_view_all,access_bi_sql_view_all,model_bi_sql_view,,0,0,0,0 +access_bi_sql_view_manager,access_bi_sql_view_manager,model_bi_sql_view,sql_request_abstract.group_sql_request_manager,1,1,1,1 +,,,,,,, +access_bi_sql_view_field_all,access_bi_sql_view_field_all,model_bi_sql_view_field,,0,0,0,0 +access_bi_sql_view_field_manager,access_bi_sql_view_field_manager,model_bi_sql_view_field,sql_request_abstract.group_sql_request_manager,1,1,1,1 diff --git a/bi_sql_editor/static/description/01_sql_request.png b/bi_sql_editor/static/description/01_sql_request.png new file mode 100644 index 000000000..118150e32 Binary files /dev/null and b/bi_sql_editor/static/description/01_sql_request.png differ diff --git a/bi_sql_editor/static/description/02_security_access.png b/bi_sql_editor/static/description/02_security_access.png new file mode 100644 index 000000000..fb717b91f Binary files /dev/null and b/bi_sql_editor/static/description/02_security_access.png differ diff --git a/bi_sql_editor/static/description/03_field_mapping.png b/bi_sql_editor/static/description/03_field_mapping.png new file mode 100644 index 000000000..08a8770f6 Binary files /dev/null and b/bi_sql_editor/static/description/03_field_mapping.png differ diff --git a/bi_sql_editor/static/description/04_materialized_view_setting.png b/bi_sql_editor/static/description/04_materialized_view_setting.png new file mode 100644 index 000000000..bcb25c013 Binary files /dev/null and b/bi_sql_editor/static/description/04_materialized_view_setting.png differ diff --git a/bi_sql_editor/static/description/05_reporting_pie.png b/bi_sql_editor/static/description/05_reporting_pie.png new file mode 100644 index 000000000..1ec4ac0c1 Binary files /dev/null and b/bi_sql_editor/static/description/05_reporting_pie.png differ diff --git a/bi_sql_editor/static/description/05_reporting_pivot.png b/bi_sql_editor/static/description/05_reporting_pivot.png new file mode 100644 index 000000000..c4c0a36cd Binary files /dev/null and b/bi_sql_editor/static/description/05_reporting_pivot.png differ diff --git a/bi_sql_editor/static/description/06_action_datetime_name.png b/bi_sql_editor/static/description/06_action_datetime_name.png new file mode 100644 index 000000000..354994e52 Binary files /dev/null and b/bi_sql_editor/static/description/06_action_datetime_name.png differ diff --git a/bi_sql_editor/static/description/icon.png b/bi_sql_editor/static/description/icon.png new file mode 100644 index 000000000..c72ba5caa Binary files /dev/null and b/bi_sql_editor/static/description/icon.png differ diff --git a/bi_sql_editor/static/description/index.html b/bi_sql_editor/static/description/index.html new file mode 100644 index 000000000..f6650e2d5 --- /dev/null +++ b/bi_sql_editor/static/description/index.html @@ -0,0 +1,545 @@ + + + + + + +BI SQL Editor + + + +
+

BI SQL Editor

+ + +

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

+

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

+ +
+

Installation

+
    +
  • You must put this module as server_wide_modules in your odoo configuration file +or add ‘–load=bi_sql_editor’ if you start odoo in command line.
  • +
+
+
+

Configuration

+

To configure this module, you need to:

+
    +
  • Go to Settings / Technical / Database Structure / SQL Views

    +
  • +
  • tip your SQL request

    +
    +https://raw.githubusercontent.com/OCA/reporting-engine/14.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/14.0/bi_sql_editor/static/description/02_security_access.png +
    +
  • +
  • Click on the button ‘Clean and Check Request’

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

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

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

    +
    +
      +
    • a cron task is created to refresh +the view. You can so define the frequency of the refresh.
    • +
    • the size of view (and the indexes is displayed)
    • +
    +
    +
    +https://raw.githubusercontent.com/OCA/reporting-engine/14.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 ‘Reporting’ / ‘Custom Reports’
  2. +
  3. Select the desired report
  4. +
+
+
+https://raw.githubusercontent.com/OCA/reporting-engine/14.0/bi_sql_editor/static/description/05_reporting_pivot.png +
+
+
    +
  • You can switch to ‘Pie’ chart or ‘Line Chart’ as any report,

    +
    +https://raw.githubusercontent.com/OCA/reporting-engine/14.0/bi_sql_editor/static/description/05_reporting_pie.png +
    +
  • +
+
+
+

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

+

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

+

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

+
+
+
+
+ + diff --git a/bi_sql_editor/static/description/main_screenshot.png b/bi_sql_editor/static/description/main_screenshot.png new file mode 100644 index 000000000..71c2984fe Binary files /dev/null and b/bi_sql_editor/static/description/main_screenshot.png differ diff --git a/bi_sql_editor/tests/__init__.py b/bi_sql_editor/tests/__init__.py new file mode 100644 index 000000000..4382f4055 --- /dev/null +++ b/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/bi_sql_editor/tests/test_bi_sql_view.py b/bi_sql_editor/tests/test_bi_sql_view.py new file mode 100644 index 000000000..02622d331 --- /dev/null +++ b/bi_sql_editor/tests/test_bi_sql_view.py @@ -0,0 +1,94 @@ +# Copyright 2017 Onestein () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo.exceptions import AccessError, UserError +from odoo.tests import tagged +from odoo.tests.common import SingleTransactionCase + + +@tagged("-at_install", "post_install") +class TestBiSqlViewEditor(SingleTransactionCase): + @classmethod + def setUpClass(cls): + super(TestBiSqlViewEditor, cls).setUpClass() + + cls.res_partner = cls.env["res.partner"] + cls.res_users = cls.env["res.users"] + cls.bi_sql_view = cls.env["bi.sql.view"] + cls.group_bi_user = cls.env.ref( + "sql_request_abstract.group_sql_request_manager" + ) + cls.group_user = cls.env.ref("base.group_user") + cls.view = cls.bi_sql_view.create( + { + "name": "Partners View 2", + "is_materialized": True, + "technical_name": "partners_view_2", + "query": "SELECT name as x_name, street as x_street," + "company_id as x_company_id FROM res_partner " + "ORDER BY name", + } + ) + cls.company = cls.env.ref("base.main_company") + # Create bi user + cls.bi_user = cls._create_user("bi_user", cls.group_bi_user, cls.company) + cls.no_bi_user = cls._create_user("no_bi_user", cls.group_user, cls.company) + + @classmethod + def _create_user(cls, login, groups, company): + """Create a user.""" + user = cls.res_users.create( + { + "name": login, + "login": login, + "password": "demo", + "email": "example@yourcompany.com", + "company_id": company.id, + "groups_id": [(6, 0, groups.ids)], + } + ) + return user + + def test_process_view(self): + view = self.view + self.assertEqual(view.state, "draft", "state not draft") + view.button_validate_sql_expression() + self.assertEqual(view.state, "sql_valid", "state not sql_valid") + view.button_create_sql_view_and_model() + self.assertEqual(view.state, "model_valid", "state not model_valid") + view.button_create_ui() + self.assertEqual(view.state, "ui_valid", "state not ui_valid") + view.button_update_model_access() + self.assertEqual(view.has_group_changed, False, "has_group_changed not False") + cron_res = view.cron_id.method_direct_trigger() + self.assertEqual(cron_res, True, "something went wrong with the cron") + + def test_copy(self): + copy_view = self.view.copy() + self.assertEqual(copy_view.name, "Partners View 2 (Copy)", "Wrong name") + + def test_security(self): + with self.assertRaises(AccessError): + self.bi_sql_view.with_user(self.no_bi_user.id).search( + [("name", "=", "Partners View 2")] + ) + bi = self.bi_sql_view.with_user(self.bi_user.id).search( + [("name", "=", "Partners View 2")] + ) + self.assertEqual( + len(bi), 1, "Bi user should not have access to " "bi %s" % self.view.name + ) + + def test_unlink(self): + self.assertEqual(self.view.state, "ui_valid", "state not ui_valid") + with self.assertRaises(UserError): + self.view.unlink() + self.view.button_set_draft() + self.assertNotEqual( + self.view.cron_id, + False, + "Set to draft materialized view should" " not unlink cron", + ) + self.view.unlink() + res = self.bi_sql_view.search([("name", "=", "Partners View 2")]) + self.assertEqual(len(res), 0, "View not deleted") diff --git a/bi_sql_editor/views/action.xml b/bi_sql_editor/views/action.xml new file mode 100644 index 000000000..852770767 --- /dev/null +++ b/bi_sql_editor/views/action.xml @@ -0,0 +1,14 @@ + + + + + SQL Views + ir.actions.act_window + bi.sql.view + tree,form + + diff --git a/bi_sql_editor/views/menu.xml b/bi_sql_editor/views/menu.xml new file mode 100644 index 000000000..00c540f0e --- /dev/null +++ b/bi_sql_editor/views/menu.xml @@ -0,0 +1,22 @@ + + + + + + + diff --git a/bi_sql_editor/views/view_bi_sql_view.xml b/bi_sql_editor/views/view_bi_sql_view.xml new file mode 100644 index 000000000..f2b127ee7 --- /dev/null +++ b/bi_sql_editor/views/view_bi_sql_view.xml @@ -0,0 +1,242 @@ + + + + + bi.sql.view + + + + + + + + + + + + bi.sql.view + +
+
+
+ +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
diff --git a/bi_view_editor/README.rst b/bi_view_editor/README.rst new file mode 100644 index 000000000..2ee866cc2 --- /dev/null +++ b/bi_view_editor/README.rst @@ -0,0 +1,169 @@ +============== +BI View Editor +============== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github + :target: https://github.com/OCA/reporting-engine/tree/14.0/bi_view_editor + :alt: OCA/reporting-engine +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/reporting-engine-14-0/reporting-engine-14-0-bi_view_editor + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/143/14.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +BI View Editor is a tool integrated in Odoo that allows users define and +execute their own reports without the need to code. + +Purpose: + +* The BI View Editor is used to create reports not already contained in the + standard Odoo, combining data from existing sources. + +* It has been designed to be used by users with little or no knowledge of + the technical architecture of Odoo. Users visually link business objects + and select the fields to visualize. + +* The BI View Editor offers users different types of representations, + including tree, graph, pivot views. + +**Table of contents** + +.. contents:: + :local: + +Installation +============ + +In the Odoo configuration file add ``bi_view_editor`` in the list +``server_wide_modules``: + +.. code-block:: ini + + [options] + (...) + server_wide_modules = web,bi_view_editor + (...) + +Alternatively specify ``--load=bi_view_editor`` when starting Odoo by command line. + +Optionally it is possible to enable the view of the ER Diagram. For this you +need to install `Graphviz`, an open source graph visualization software: + +.. code-block:: bash + + ``sudo apt-get install graphviz`` + +Usage +===== + +To graphically design your analysis data-set: + +- From the Dashboards menu, select "Custom BI Views" +- Browse trough the business objects in the "Query Builder" tab +- Pick the interesting fields (Drag & Drop) +- For each selected field, right-click on the Options column and select whether + it's a row, column or measure; if you want to remove the field from the list + view, unflag the checkbox ´List´ in the Options column +- Save and click "Generate BI View" +- Click "Open BI View" to view the result + +To access the created BI View with a dedicated menu: + +- If module Dashboard (board) is installed, the standard "Add to My Dashboard" + functionality would be available +- Click "Create a menu" to create a new menu item directly linked to your new + BI view (this feature is available in developer mode); when the BI view is + reset back to draft this menu will be removed, and you will need to re-create + the menu entry. + +A more advanced UI is also available under the "Details" tab. It provides extra +possibilities for more advanced users, like to use LEFT JOIN instead of the +default INNER JOIN. + +It also possible to improve the IDs generation for new views by adding an +`Over Condition` in the "SQL" tab, see https://www.postgresql.org/docs/current/sql-expressions.html#SYNTAX-WINDOW-FUNCTIONS +for further details. +For instance, an ORDER BY clause helps preventing unreliable behavior when +filtering the generated views. + +Known issues / Roadmap +====================== + +* Non-stored fields and many2many fields are not supported. +* Provide a tutorial (eg. a working example of usage). +* Find better ways to extend the *_auto_init()* without override. +* Possibly avoid the monkey patches. +* Data the user has no access to (e.g. in a multi company situation) can be + viewed by making a view. Would be nice if models available to select when + creating a view are limited to the ones that have intersecting groups. + +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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Onestein + +Contributors +~~~~~~~~~~~~ + +* Simon Janssens +* Diego Luis Neto +* Dennis Sluijk +* Kevin Graveman +* Richard Dijkstra +* Andrea Stirpe +* Antonio Esposito +* Jordi Ballester Alomar + +Other credits +~~~~~~~~~~~~~ + +Funders +------- + +The development of this module for Odoo 11.0 has been financially supported by: + +* IDEAL Connaissances SAS https://www.idealconnaissances.com + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/reporting-engine `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/bi_view_editor/__init__.py b/bi_view_editor/__init__.py new file mode 100644 index 000000000..d771dad23 --- /dev/null +++ b/bi_view_editor/__init__.py @@ -0,0 +1,5 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import models +from . import wizard +from .hooks import uninstall_hook diff --git a/bi_view_editor/__manifest__.py b/bi_view_editor/__manifest__.py new file mode 100644 index 000000000..03a5fb22f --- /dev/null +++ b/bi_view_editor/__manifest__.py @@ -0,0 +1,24 @@ +# Copyright 2015-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "BI View Editor", + "summary": "Graphical BI views builder for Odoo", + "images": ["static/description/main_screenshot.png"], + "author": "Onestein,Odoo Community Association (OCA)", + "license": "AGPL-3", + "website": "https://github.com/OCA/reporting-engine", + "category": "Productivity", + "version": "14.0.1.0.0", + "development_status": "Beta", + "depends": ["web"], + "data": [ + "security/ir.model.access.csv", + "security/rules.xml", + "templates/assets_template.xml", + "views/bve_view.xml", + ], + "qweb": ["static/src/xml/bi_view_editor.xml"], + "uninstall_hook": "uninstall_hook", + "installable": True, +} diff --git a/bi_view_editor/hooks.py b/bi_view_editor/hooks.py new file mode 100644 index 000000000..617188def --- /dev/null +++ b/bi_view_editor/hooks.py @@ -0,0 +1,28 @@ +# Copyright 2015-2019 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + + +def uninstall_hook(cr, registry): + # delete dirty data that could cause problems + # while re-installing the module + cr.execute( + """ + delete from ir_model where model like 'x_bve.%' + """ + ) + cr.execute( + """ + delete from bve_view where model_name like 'x_bve.%' + """ + ) + cr.execute( + """ + SELECT 'DROP VIEW ' || table_name + FROM information_schema.views + WHERE table_schema NOT IN ('pg_catalog', 'information_schema') + AND table_name like 'x_bve_%' + """ + ) + results = list(cr.fetchall()) + for result in results: + cr.execute(result[0]) diff --git a/bi_view_editor/i18n/am.po b/bi_view_editor/i18n/am.po new file mode 100644 index 000000000..62baa9d82 --- /dev/null +++ b/bi_view_editor/i18n/am.po @@ -0,0 +1,558 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-15 19:59+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/ar.po b/bi_view_editor/i18n/ar.po new file mode 100644 index 000000000..d819ebee2 --- /dev/null +++ b/bi_view_editor/i18n/ar.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "أنشئ في" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "أنشئ في" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "اسم العرض" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "المعرف" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "الاسم" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "الأمن" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "المستخدمون" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/bg.po b/bi_view_editor/i18n/bg.po new file mode 100644 index 000000000..55be2fe95 --- /dev/null +++ b/bi_view_editor/i18n/bg.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Създадено на" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Създадено на" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Име за Показване" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Име" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Защита" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/bi_view_editor.pot b/bi_view_editor/i18n/bi_view_editor.pot new file mode 100644 index 000000000..dff614041 --- /dev/null +++ b/bi_view_editor/i18n/bi_view_editor.pot @@ -0,0 +1,557 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view_line__list_attr__avg +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__over_condition +msgid "" +"Condition to be inserted in the OVER part of the ID's row_number function.\n" +"For instance, 'ORDER BY t1.id' would create IDs ordered in the same way as t1's IDs; otherwise IDs are assigned with no specific order." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "Create Menu Wizard" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Create a Menu" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__created +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#: model:ir.model.constraint,message:bi_view_editor.constraint_bve_view_name_uniq +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_ir_model__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_wizard_ir_model_menu_create__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view__state__draft +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"Error creating the view '{query}':\n" +"{error}" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Following fields are missing: {}." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +#: model:ir.model.fields,field_description:bi_view_editor.field_ir_model__id +#: model:ir.model.fields,field_description:bi_view_editor.field_wizard_ir_model_menu_create__id +msgid "ID" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:0 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_ir_model____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_wizard_ir_model_menu_create____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:0 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__over_condition +msgid "Over Condition" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields.selection,name:bi_view_editor.selection__bve_view_line__list_attr__sum +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:0 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:0 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:0 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/bs.po b/bi_view_editor/i18n/bs.po new file mode 100644 index 000000000..a95abca60 --- /dev/null +++ b/bi_view_editor/i18n/bs.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Kreirano" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Prikaži naziv" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Ime" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Sigurnost" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/ca.po b/bi_view_editor/i18n/ca.po new file mode 100644 index 000000000..467029945 --- /dev/null +++ b/bi_view_editor/i18n/ca.po @@ -0,0 +1,563 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 06:04+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creat el" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creat el" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Veure el nom" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Estat" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Usuaris" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Error" diff --git a/bi_view_editor/i18n/cs.po b/bi_view_editor/i18n/cs.po new file mode 100644 index 000000000..c245afd1d --- /dev/null +++ b/bi_view_editor/i18n/cs.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Vytvořeno" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Vytvořeno" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Zobrazovaný název" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Název" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Zabezpečení" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/da.po b/bi_view_editor/i18n/da.po new file mode 100644 index 000000000..d457191c1 --- /dev/null +++ b/bi_view_editor/i18n/da.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Oprettet den" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Oprettet den" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Vist navn" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "Id" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Navn" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Sikkerhed" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Brugere" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/de.po b/bi_view_editor/i18n/de.po new file mode 100644 index 000000000..e46281602 --- /dev/null +++ b/bi_view_editor/i18n/de.po @@ -0,0 +1,562 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 05:51+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: German (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Aktion" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Erstellt am:" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Erstellt am:" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Erstellt am:" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Entwurf" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Anzeigename" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Datenmodelle" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Datenmodelle" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Datenmodelle" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Bezeichnung" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Hinweise" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Aktion" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Aktion" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Status" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Benutzer" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/el_GR.po b/bi_view_editor/i18n/el_GR.po new file mode 100644 index 000000000..bae6ea354 --- /dev/null +++ b/bi_view_editor/i18n/el_GR.po @@ -0,0 +1,558 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Δημιουργήθηκε στις" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Δημιουργήθηκε στις" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "Κωδικός" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Χρήστες" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/en_GB.po b/bi_view_editor/i18n/en_GB.po new file mode 100644 index 000000000..2ecc1f832 --- /dev/null +++ b/bi_view_editor/i18n/en_GB.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Created on" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Created on" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Created on" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Display Name" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Name" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Security" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es.po b/bi_view_editor/i18n/es.po new file mode 100644 index 000000000..0a3ec0917 --- /dev/null +++ b/bi_view_editor/i18n/es.po @@ -0,0 +1,575 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +# Eduardo Rodríguez Crespo , 2016 +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-08 09:43+0000\n" +"PO-Revision-Date: 2016-06-13 21:28+0000\n" +"Last-Translator: Eduardo Rodríguez Crespo \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Acción" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, fuzzy, python-format +msgid "BI View" +msgstr "Abrir vista BI" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "Editor de vistas BI" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +#, fuzzy +#| msgid "BI View Editor" +msgid "BI View Editor Lines" +msgstr "Editor de vistas BI" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +#, fuzzy +msgid "Bve View" +msgstr "Abrir vista BI" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "Creado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "Vista BI personalizada" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "¡El nombre de las vistas BI personalizadas debe ser único!" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "Vistas BI personalizadas" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "Objeto personalizado" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "Informes personalizados" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "Datos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Borrador" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Model Name" +msgid "Field Name" +msgstr "Nombre del modelo" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "Generar vista BI" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "Grupos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modelos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modelos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "Nombre del modelo" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Notas" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "Abrir vista BI" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Acción" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "Consulta" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Acción" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "Devolver a estado borrador" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Estado" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" +"Usa el constructor especial de consultas para definir la consulta del " +"informe de datos. NOTA: para ser editada, la consulta debe estar en estado " +"'Borrador'" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" +"Grupos de usuarios permitidos para ver el informe generado; si NO se " +"especifican grupos, el informe será público para todos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Usuarios" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "Vista" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" +"¡No puedes eliminar una vista creada! Devuélvela a estado borrador primero" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Error" diff --git a/bi_view_editor/i18n/es_AR.po b/bi_view_editor/i18n/es_AR.po new file mode 100644 index 000000000..dfbfd3f6b --- /dev/null +++ b/bi_view_editor/i18n/es_AR.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Mostrar Nombre" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_CL.po b/bi_view_editor/i18n/es_CL.po new file mode 100644 index 000000000..7b753706b --- /dev/null +++ b/bi_view_editor/i18n/es_CL.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_CO.po b/bi_view_editor/i18n/es_CO.po new file mode 100644 index 000000000..030afdc23 --- /dev/null +++ b/bi_view_editor/i18n/es_CO.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre Público" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_CR.po b/bi_view_editor/i18n/es_CR.po new file mode 100644 index 000000000..f3b22a3c4 --- /dev/null +++ b/bi_view_editor/i18n/es_CR.po @@ -0,0 +1,558 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_DO.po b/bi_view_editor/i18n/es_DO.po new file mode 100644 index 000000000..0e4a7ff39 --- /dev/null +++ b/bi_view_editor/i18n/es_DO.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/" +"OCA-reporting-engine-8-0/language/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_EC.po b/bi_view_editor/i18n/es_EC.po new file mode 100644 index 000000000..690ca8bf4 --- /dev/null +++ b/bi_view_editor/i18n/es_EC.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre mostrado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_ES.po b/bi_view_editor/i18n/es_ES.po new file mode 100644 index 000000000..3df501493 --- /dev/null +++ b/bi_view_editor/i18n/es_ES.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 05:51+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre para mostrar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modelos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modelos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Usuarios" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_MX.po b/bi_view_editor/i18n/es_MX.po new file mode 100644 index 000000000..f4b22ddcf --- /dev/null +++ b/bi_view_editor/i18n/es_MX.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre desplegado" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_PE.po b/bi_view_editor/i18n/es_PE.po new file mode 100644 index 000000000..5c88add94 --- /dev/null +++ b/bi_view_editor/i18n/es_PE.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nombre a Mostrar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_PY.po b/bi_view_editor/i18n/es_PY.po new file mode 100644 index 000000000..3da65b178 --- /dev/null +++ b/bi_view_editor/i18n/es_PY.po @@ -0,0 +1,558 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/es_VE.po b/bi_view_editor/i18n/es_VE.po new file mode 100644 index 000000000..d2c0b7051 --- /dev/null +++ b/bi_view_editor/i18n/es_VE.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Mostrar nombre" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Seguridad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/et.po b/bi_view_editor/i18n/et.po new file mode 100644 index 000000000..49ffcea74 --- /dev/null +++ b/bi_view_editor/i18n/et.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-03 04:09+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Loodud" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Loodud" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Näidatav nimi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nimi" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Turvalisus" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/eu.po b/bi_view_editor/i18n/eu.po new file mode 100644 index 000000000..a6fabc4bd --- /dev/null +++ b/bi_view_editor/i18n/eu.po @@ -0,0 +1,564 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 05:51+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Created on" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Created on" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Created on" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Izena erakutsi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Models" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Models" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Models" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Izena" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Errorea" diff --git a/bi_view_editor/i18n/fa.po b/bi_view_editor/i18n/fa.po new file mode 100644 index 000000000..2936ff6a3 --- /dev/null +++ b/bi_view_editor/i18n/fa.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "ایجاد شده در" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "ایجاد شده در" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "نام نمایشی" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "شناسه" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "نام" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "امنیت" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/fi.po b/bi_view_editor/i18n/fi.po new file mode 100644 index 000000000..3a20fb4aa --- /dev/null +++ b/bi_view_editor/i18n/fi.po @@ -0,0 +1,565 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 05:51+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Toiminto" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Luotu" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Luotu" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Luonnos" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nimi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Mallit" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Mallit" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Mallit" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nimi" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Huomautukset" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Toiminto" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Toiminto" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "Palauta luonnokseksi" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Tila" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Käyttäjät" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Virhe" diff --git a/bi_view_editor/i18n/fr.po b/bi_view_editor/i18n/fr.po new file mode 100644 index 000000000..37ae64814 --- /dev/null +++ b/bi_view_editor/i18n/fr.po @@ -0,0 +1,565 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-03 04:09+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Action" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Date" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Date" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Date" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Brouillon" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nom à afficher" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "Groupes" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modèles" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modèles" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modèles" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Commentaires" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Action" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Action" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "État" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Utilisateurs" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Erreur" diff --git a/bi_view_editor/i18n/fr_CA.po b/bi_view_editor/i18n/fr_CA.po new file mode 100644 index 000000000..3c6cd5f3e --- /dev/null +++ b/bi_view_editor/i18n/fr_CA.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Créé le" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Créé le" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Afficher le nom" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "Identifiant" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/fr_CH.po b/bi_view_editor/i18n/fr_CH.po new file mode 100644 index 000000000..ba3389f37 --- /dev/null +++ b/bi_view_editor/i18n/fr_CH.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 16:14+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/fr_CH/)\n" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Créé le" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Créé le" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nom affiché" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "État" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Utilisateurs" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/gl.po b/bi_view_editor/i18n/gl.po new file mode 100644 index 000000000..7d471c5ea --- /dev/null +++ b/bi_view_editor/i18n/gl.po @@ -0,0 +1,558 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creado en" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/gl_ES.po b/bi_view_editor/i18n/gl_ES.po new file mode 100644 index 000000000..175c94008 --- /dev/null +++ b/bi_view_editor/i18n/gl_ES.po @@ -0,0 +1,556 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/gl_ES/)\n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "Create Menu Wizard" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Create a Menu" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/he.po b/bi_view_editor/i18n/he.po new file mode 100644 index 000000000..7371bc4f6 --- /dev/null +++ b/bi_view_editor/i18n/he.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "נוצר ב-" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "נוצר ב-" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "השם המוצג" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "מזהה" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "שם" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "אבטחה" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/hr.po b/bi_view_editor/i18n/hr.po new file mode 100644 index 000000000..e81918133 --- /dev/null +++ b/bi_view_editor/i18n/hr.po @@ -0,0 +1,562 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Kreirano" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Naziv " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modeli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modeli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modeli" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Naziv" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Bilješke" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Sigurnost" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Status" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Korisnici" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/hr_HR.po b/bi_view_editor/i18n/hr_HR.po new file mode 100644 index 000000000..ec63f72c3 --- /dev/null +++ b/bi_view_editor/i18n/hr_HR.po @@ -0,0 +1,562 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Kreirano" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Naziv" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modeli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modeli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modeli" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Korisnici" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/hu.po b/bi_view_editor/i18n/hu.po new file mode 100644 index 000000000..ff1cc12bc --- /dev/null +++ b/bi_view_editor/i18n/hu.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-03 04:09+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Létrehozás dátuma" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Létrehozás dátuma" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Név megjelenítése" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Név" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Biztonság" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/id.po b/bi_view_editor/i18n/id.po new file mode 100644 index 000000000..204d29693 --- /dev/null +++ b/bi_view_editor/i18n/id.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Dibuat pada" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Dibuat pada" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nama Tampilan" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nama" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Keamanan" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/it.po b/bi_view_editor/i18n/it.po new file mode 100644 index 000000000..66c4f88b3 --- /dev/null +++ b/bi_view_editor/i18n/it.po @@ -0,0 +1,565 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 05:51+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Azione" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creato il" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creato il" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Bozza" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nome da visualizzare" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modelli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modelli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modelli" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Note" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Azione" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Azione" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Sicurezza" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Stato" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Utenti" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Error" diff --git a/bi_view_editor/i18n/ja.po b/bi_view_editor/i18n/ja.po new file mode 100644 index 000000000..970e96889 --- /dev/null +++ b/bi_view_editor/i18n/ja.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "作成日" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "作成日" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "作成日" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "表示名" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "名称" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "セキュリティ" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/ko.po b/bi_view_editor/i18n/ko.po new file mode 100644 index 000000000..882214691 --- /dev/null +++ b/bi_view_editor/i18n/ko.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "작성일" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "작성일" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "작성일" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "표시 이름" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "이름" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "보안" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/lt.po b/bi_view_editor/i18n/lt.po new file mode 100644 index 000000000..f4eeb5b92 --- /dev/null +++ b/bi_view_editor/i18n/lt.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Sukurta" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Sukurta" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Pavadinimas" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Saugumas" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/lt_LT.po b/bi_view_editor/i18n/lt_LT.po new file mode 100644 index 000000000..f5b1cace6 --- /dev/null +++ b/bi_view_editor/i18n/lt_LT.po @@ -0,0 +1,559 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Sukurta" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Sukurta" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/lv.po b/bi_view_editor/i18n/lv.po new file mode 100644 index 000000000..a8e6d7653 --- /dev/null +++ b/bi_view_editor/i18n/lv.po @@ -0,0 +1,559 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Izveidots" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Izveidots" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nosaukums" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Drošība" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/mk.po b/bi_view_editor/i18n/mk.po new file mode 100644 index 000000000..785d3eced --- /dev/null +++ b/bi_view_editor/i18n/mk.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Креирано на" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Креирано на" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Прикажи име" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Име" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Безбедност" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/mn.po b/bi_view_editor/i18n/mn.po new file mode 100644 index 000000000..8a2982436 --- /dev/null +++ b/bi_view_editor/i18n/mn.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Үүсгэсэн" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Үүсгэсэн" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Дэлгэцийн Нэр" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Нэр" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Хамгаалалт" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/nb.po b/bi_view_editor/i18n/nb.po new file mode 100644 index 000000000..2a81e6efa --- /dev/null +++ b/bi_view_editor/i18n/nb.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Opprettet den" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Opprettet den" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Visnings navn" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Navn" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Sikkerhet" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/nb_NO.po b/bi_view_editor/i18n/nb_NO.po new file mode 100644 index 000000000..b93e0c8ff --- /dev/null +++ b/bi_view_editor/i18n/nb_NO.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Laget den" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Laget den" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Vis navn" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/nl.po b/bi_view_editor/i18n/nl.po new file mode 100644 index 000000000..2f1e76ced --- /dev/null +++ b/bi_view_editor/i18n/nl.po @@ -0,0 +1,589 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2017-03-14 19:54+0100\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-reporting-engine-10-0/" +"language/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Actie" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, fuzzy, python-format +msgid "BI View" +msgstr "Open BI Weergave" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "BI Weergave bewerker" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +#, fuzzy +#| msgid "BI View Editor" +msgid "BI View Editor Lines" +msgstr "BI Weergave bewerker" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +#, fuzzy +msgid "Bve View" +msgstr "Open BI Weergave" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Aangemaakt op" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Aangemaakt op" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "Aangemaakt" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "Aangepaste BI Weergave" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "Aangepaste BI Weergave moet uniek zijn!" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "Aangepaste BI Weergaves" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "Aangepast object" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "Aangepaste rapporten" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "Data" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Concept" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Model Name" +msgid "Field Name" +msgstr "Model naam" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "Genereer BI Weergave" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "Groepen" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modellen" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modellen" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "Model naam" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modellen" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Naam" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Notities" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "Open BI Weergave" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Actie" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "Query" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Actie" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "Terug naar concept" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Beveiliging" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Status" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" +"Gebruik de speciale query bouwer om queries te definiëren voor uw rapportage " +"dataset. LET OP: Om te bewerken moet de query in de 'Concept\" status zijn. " + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" +"Gebruikers groepen die de gegenereerde rapporten kunnen zijn; wanneer geen " +"groepen ingesteld zijn is het rapport zichtbaar voor alle gebruikers." + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Gebruikers" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "Weergave" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" +"U kunt een aangemaakte weergave niet verwijderen. Reset de weergave eerst " +"naar de concept fase." + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "" +#~ "

\n" +#~ " Click to create a Custom Query Object.\n" +#~ "

\n" +#~ "\n" +#~ "

\n" +#~ " " +#~ msgstr "" +#~ "

\n" +#~ " Klik om een nieuwe custom query object te maken.\n" +#~ "

\n" +#~ "\n" +#~ "

\n" +#~ " " + +#~ msgid "Error" +#~ msgstr "Fout" diff --git a/bi_view_editor/i18n/nl_BE.po b/bi_view_editor/i18n/nl_BE.po new file mode 100644 index 000000000..688bef397 --- /dev/null +++ b/bi_view_editor/i18n/nl_BE.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Gemaakt op" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Gemaakt op" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Schermnaam" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Naam:" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/pl.po b/bi_view_editor/i18n/pl.po new file mode 100644 index 000000000..494fe2f24 --- /dev/null +++ b/bi_view_editor/i18n/pl.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Utworzono" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Utworzono" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Wyświetlana nazwa " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nazwa" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Uprawnienia" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/pt.po b/bi_view_editor/i18n/pt.po new file mode 100644 index 000000000..019535025 --- /dev/null +++ b/bi_view_editor/i18n/pt.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Criado em" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Criado em" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nome" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/pt_BR.po b/bi_view_editor/i18n/pt_BR.po new file mode 100644 index 000000000..b72bdd98a --- /dev/null +++ b/bi_view_editor/i18n/pt_BR.po @@ -0,0 +1,562 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-03 04:09+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Ação" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Criado em" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Criado em" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Rascunho" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nome para Mostrar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "Identificação" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modelos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modelos" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Ação" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Ação" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Estado" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Usuários" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/pt_PT.po b/bi_view_editor/i18n/pt_PT.po new file mode 100644 index 000000000..6916f6ccf --- /dev/null +++ b/bi_view_editor/i18n/pt_PT.po @@ -0,0 +1,563 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-25 05:54+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Criado em" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Criado em" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Rascunho" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nome a Apresentar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Erro" diff --git a/bi_view_editor/i18n/ro.po b/bi_view_editor/i18n/ro.po new file mode 100644 index 000000000..c4049009e --- /dev/null +++ b/bi_view_editor/i18n/ro.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Creat la" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Creat la" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Nume Afişat" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/ru.po b/bi_view_editor/i18n/ru.po new file mode 100644 index 000000000..982806d57 --- /dev/null +++ b/bi_view_editor/i18n/ru.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Создан" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Создан" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Создан" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Название" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/sk.po b/bi_view_editor/i18n/sk.po new file mode 100644 index 000000000..5e3494010 --- /dev/null +++ b/bi_view_editor/i18n/sk.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Vytvorené" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Vytvorené" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Zobraziť meno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Meno" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Bezpečnosť" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/sl.po b/bi_view_editor/i18n/sl.po new file mode 100644 index 000000000..5aeb49734 --- /dev/null +++ b/bi_view_editor/i18n/sl.po @@ -0,0 +1,592 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-04 02:44+0000\n" +"PO-Revision-Date: 2016-05-03 15:03+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Ukrep" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, fuzzy, python-format +msgid "BI View" +msgstr "Odpri BI prikaz" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "BI urejevalnik prikazov" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +#, fuzzy +#| msgid "BI View Editor" +msgid "BI View Editor Lines" +msgstr "BI urejevalnik prikazov" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +#, fuzzy +msgid "Bve View" +msgstr "Odpri BI prikaz" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Ustvarjeno" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Ustvarjeno" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "Nastanek" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "Prilagojen BI prikaz" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "Nazivi prilagojenih BI prikazov morajo biti unikatni!" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "Prilagojeni BI prikazi" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "Prilagojen objekt" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "Prilagojena poročila" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "Podatki" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Osnutek" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Model Name" +msgid "Field Name" +msgstr "Naziv modela" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "Ustvari BI prikaz" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "Skupine" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modeli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modeli" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "Naziv modela" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modeli" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Naziv" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Opombe" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "Odpri BI prikaz" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Ukrep" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "Poizvedba" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Ukrep" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "Ponastavi v osnutek" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Varnost" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Stanje" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" +"Uporabite posebni gradnik poizvedb za določanje poizvedbe, ki bo ustvarila " +"poročilo z vašim naborom podatkov. OPOMBA: Urejate lahko le poizvedbe s " +"statusom 'Osnutek'." + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" +"Uporabniške skupine, ki imajo vpogled v ustvarjeno poročilo; če ni določena " +"nobena skupina, bo poročilo javno dostopno." + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Uporabniki" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "Prikaz" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" +"Ustvarjenega prikaza ne morete brisati! Najprej morate prikaz ponastaviti v " +"osnutek." + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "" +#~ "

\n" +#~ " Click to create a Custom Query Object.\n" +#~ "

\n" +#~ "\n" +#~ "

\n" +#~ " " +#~ msgstr "" +#~ "

\n" +#~ " Ustvari prilagojen objekt poizvedbe.\n" +#~ "

\n" +#~ "\n" +#~ "

\n" +#~ " " + +#~ msgid "Error" +#~ msgstr "Napaka" diff --git a/bi_view_editor/i18n/sr.po b/bi_view_editor/i18n/sr.po new file mode 100644 index 000000000..b2a94a901 --- /dev/null +++ b/bi_view_editor/i18n/sr.po @@ -0,0 +1,559 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Kreiran" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Kreiran" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Ime" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Bezbednost" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/sr@latin.po b/bi_view_editor/i18n/sr@latin.po new file mode 100644 index 000000000..5937e8a0c --- /dev/null +++ b/bi_view_editor/i18n/sr@latin.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/sr@latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Kreiran" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Kreiran" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Ime za prikaz" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Ime:" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Bezbednost" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/sv.po b/bi_view_editor/i18n/sv.po new file mode 100644 index 000000000..dab73cc89 --- /dev/null +++ b/bi_view_editor/i18n/sv.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Skapad den" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Skapad den" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Visa namn" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Namn" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Säkerhet" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/th.po b/bi_view_editor/i18n/th.po new file mode 100644 index 000000000..102e5e3e5 --- /dev/null +++ b/bi_view_editor/i18n/th.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "สร้างเมื่อ" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "สร้างเมื่อ" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "รหัส" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "ชื่อ" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "ความปลอดภัย" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/tr.po b/bi_view_editor/i18n/tr.po new file mode 100644 index 000000000..5afcfbc45 --- /dev/null +++ b/bi_view_editor/i18n/tr.po @@ -0,0 +1,562 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Eylem" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Oluşturuldu" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Oluşturuldu" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Taslak" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Görünen İsim" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Modeller" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Modeller" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Modeller" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Adı" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Notlar" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Eylem" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Eylem" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "Taslakta Sıfırla" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Durum" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Kullanıcılar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/tr_TR.po b/bi_view_editor/i18n/tr_TR.po new file mode 100644 index 000000000..a54485b58 --- /dev/null +++ b/bi_view_editor/i18n/tr_TR.po @@ -0,0 +1,571 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 06:53+0000\n" +"PO-Revision-Date: 2017-01-04 14:44+0000\n" +"Last-Translator: Ozge Altinisik \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "Eylem" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, fuzzy, python-format +msgid "BI View" +msgstr "Görüntüle" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +#, fuzzy +msgid "Bve View" +msgstr "Görüntüle" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Oluşturulma tarihi" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Oluşturulma tarihi" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "Oluşturuldu" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "Veri" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "Taslak" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Model Name" +msgid "Field Name" +msgstr "Tip adı" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "Kimlik" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +#, fuzzy +msgid "Join Model" +msgstr "Tipler" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, fuzzy, python-format +msgid "Model" +msgstr "Tipler" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "Tip adı" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "Tipler" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Ad" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Notlar" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, fuzzy, python-format +msgid "Options" +msgstr "Eylem" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "Soru" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +#, fuzzy +msgid "Relations" +msgstr "Eylem" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Güvenlik" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "Hal" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" +"Kullanıcı grupları oluşturulan raporu görebilir; eğer hiçbir grup " +"belirlenmemişse rapor herkes tarafından görüntülenebilir." + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "Kullanıcılar" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "Görüntüle" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" +"Oluşturulmuş görüntüyü silemezsiniz! İlk önce taslak hazırlamak için " +"görüntüyü sıfırla. " + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" + +#~ msgid "Error" +#~ msgstr "Hata" diff --git a/bi_view_editor/i18n/uk.po b/bi_view_editor/i18n/uk.po new file mode 100644 index 000000000..a81d703a5 --- /dev/null +++ b/bi_view_editor/i18n/uk.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Дата створення" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Дата створення" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Назва для відображення" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Name" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Безпека" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/vi.po b/bi_view_editor/i18n/vi.po new file mode 100644 index 000000000..fead16a36 --- /dev/null +++ b/bi_view_editor/i18n/vi.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Được tạo vào" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Được tạo vào" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "Tên hiển thị" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "Tên" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "Bảo mật" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/vi_VN.po b/bi_view_editor/i18n/vi_VN.po new file mode 100644 index 000000000..3cf6c3430 --- /dev/null +++ b/bi_view_editor/i18n/vi_VN.po @@ -0,0 +1,558 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "Tạo vào" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "Tạo vào" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +msgid "Field Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/zh_CN.po b/bi_view_editor/i18n/zh_CN.po new file mode 100644 index 000000000..f4d13933d --- /dev/null +++ b/bi_view_editor/i18n/zh_CN.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "创建时间" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "创建时间" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "显示名称" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "ID" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "名称" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "安全" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "用户" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/i18n/zh_TW.po b/bi_view_editor/i18n/zh_TW.po new file mode 100644 index 000000000..593b63c56 --- /dev/null +++ b/bi_view_editor/i18n/zh_TW.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-03-21 15:33+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:418 +#, python-format +msgid "" +"%s\n" +"\n" +"%s\n" +"%s" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:452 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:179 +#, python-format +msgid "(join left)" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:544 +#, python-format +msgid "Abstract models not supported." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__action_id +msgid "Action" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:415 +#, python-format +msgid "At least one of the following groups must be added:" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Average" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:446 +#, python-format +msgid "BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view +msgid "BI View Editor" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_bve_view_line +msgid "BI View Editor Lines" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "Base" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__bve_view_id +msgid "Bve View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:36 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:18 +#, python-format +msgid "Clear" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.actions.act_window,help:bi_view_editor.action_bi_view_editor_view_form +msgid "Click to create a Custom Query Object." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:103 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:154 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__column +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +#, fuzzy +msgid "Create Menu Wizard" +msgstr "建立於" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +#, fuzzy +msgid "Create a Menu" +msgstr "建立於" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Created" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__create_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__create_date +msgid "Created on" +msgstr "建立於" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_tree +msgid "Custom BI View" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:106 sql_constraint:bve.view:0 +#, python-format +msgid "Custom BI View names must be unique!" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_view_form +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_view +msgid "Custom BI Views" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Custom Object" +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.menu,name:bi_view_editor.menu_bi_view_editor_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__data +msgid "Data" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__description +msgid "Description" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Details" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__display_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "ER Diagram" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__er_diagram_image +msgid "Er Diagram Image" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_id +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Field" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:64 +#, python-format +msgid "" +"Field %s/%s is duplicated.\n" +"Please remove the duplications." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__field_name +#, fuzzy +#| msgid "Display Name" +msgid "Field Name" +msgstr "顯示名稱" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__field_ids +msgid "Fields" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:439 +#, python-format +msgid "Following fields are missing: %s." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:432 +#, python-format +msgid "" +"Following models are missing: %s.\n" +"Probably some modules were uninstalled." +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Generate BI View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__group_ids +msgid "Groups" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__id +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__id +msgid "ID" +msgstr "編號" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__in_list +msgid "In List" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:537 +#, python-format +msgid "Inconsistent lines." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:137 +#, python-format +msgid "Join Left" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_model_id +msgid "Join Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__join_node +msgid "Join Node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js:30 +#, python-format +msgid "Join..." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view____last_update +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line____last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_uid +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__write_date +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__left_join +msgid "Left Join" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__line_ids +msgid "Lines" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:124 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:157 +#, python-format +msgid "List" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__list_attr +msgid "List Attribute" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:117 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:156 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__measure +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_id +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__model_name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__model_name +msgid "Model Name" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_ir_model +msgid "Models" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:85 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__name +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__name +#, python-format +msgid "Name" +msgstr "名稱" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/models.py:56 +#, python-format +msgid "No data to be displayed." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:424 +#, python-format +msgid "No data to process." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__note +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Open BI View" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:87 +#, python-format +msgid "Options" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__query +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query Builder" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__relation +msgid "Relation" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__relation_ids +msgid "Relations" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Reset to Draft" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:110 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:155 +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__row +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "SQL" +msgstr "" + +#. module: bi_view_editor +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Security" +msgstr "安全" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__sequence +msgid "Sequence" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view.line,list_attr:0 +msgid "Sum" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__table_alias +msgid "Table Alias" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:414 +#, python-format +msgid "" +"The model \"%s\" cannot be accessed by users with the selected groups only." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:54 +#, python-format +msgid "This field cannot be a measure." +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view_line.py:50 +#, python-format +msgid "This field cannot be a row or a column." +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model_terms:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__ttype +msgid "Type" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:30 +#, python-format +msgid "Use the existing node" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:34 +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:43 +#, python-format +msgid "Use the field" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__data +msgid "" +"Use the special query builder to define the query to generate your report " +"dataset. NOTE: To be edited, the query should be in 'Draft' status." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,help:bi_view_editor.field_bve_view__group_ids +msgid "" +"User groups allowed to see the generated report; if NO groups are specified " +"the report will be public for everyone." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__user_ids +msgid "Users" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view__view_id +msgid "View" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_line__view_field_type +msgid "View Field Type" +msgstr "" + +#. module: bi_view_editor +#: code:addons/bi_view_editor/models/bve_view.py:489 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:39 +#, python-format +msgid "new" +msgstr "" diff --git a/bi_view_editor/models/__init__.py b/bi_view_editor/models/__init__.py new file mode 100644 index 000000000..b8e17515d --- /dev/null +++ b/bi_view_editor/models/__init__.py @@ -0,0 +1,6 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import models +from . import bve_view +from . import bve_view_line +from . import ir_model diff --git a/bi_view_editor/models/bve_view.py b/bi_view_editor/models/bve_view.py new file mode 100644 index 000000000..51d2f5d0b --- /dev/null +++ b/bi_view_editor/models/bve_view.py @@ -0,0 +1,641 @@ +# Copyright 2015-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import base64 +import json + +import pydot +from psycopg2.extensions import AsIs + +from odoo import _, api, fields, models, tools +from odoo.exceptions import UserError, ValidationError + + +class BveView(models.Model): + _name = "bve.view" + _description = "BI View Editor" + + @api.depends("group_ids", "group_ids.users") + def _compute_users(self): + for bve_view in self.sudo(): + if bve_view.group_ids: + bve_view.user_ids = bve_view.group_ids.mapped("users") + else: + bve_view.user_ids = self.env["res.users"].sudo().search([]) + + @api.depends("name") + def _compute_model_name(self): + for bve_view in self: + name = [x for x in bve_view.name.lower() if x.isalnum()] + model_name = "".join(name).replace("_", ".").replace(" ", ".") + bve_view.model_name = "x_bve." + model_name + + def _compute_serialized_data(self): + for bve_view in self: + serialized_data = [] + for line in bve_view.line_ids.sorted(key=lambda r: r.sequence): + serialized_data.append( + { + "sequence": line.sequence, + "model_id": line.model_id.id, + "id": line.field_id.id, + "name": line.name, + "model_name": line.model_id.name, + "model": line.model_id.model, + "type": line.ttype, + "table_alias": line.table_alias, + "description": line.description, + "row": line.row, + "column": line.column, + "measure": line.measure, + "list": line.in_list, + "join_node": line.join_node, + "relation": line.relation, + } + ) + bve_view.data = json.dumps(serialized_data) + + def _inverse_serialized_data(self): + for bve_view in self: + line_ids = self._sync_lines_and_data(bve_view.data) + bve_view.write({"line_ids": line_ids}) + + name = fields.Char(required=True, copy=False, default="") + model_name = fields.Char(compute="_compute_model_name", store=True) + note = fields.Text(string="Notes") + state = fields.Selection( + [("draft", "Draft"), ("created", "Created")], default="draft", copy=False + ) + data = fields.Char( + compute="_compute_serialized_data", + inverse="_inverse_serialized_data", + help="Use the special query builder to define the query " + "to generate your report dataset. " + "NOTE: To be edited, the query should be in 'Draft' status.", + ) + line_ids = fields.One2many("bve.view.line", "bve_view_id", string="Lines") + field_ids = fields.One2many( + "bve.view.line", + "bve_view_id", + domain=["|", ("join_node", "=", -1), ("join_node", "=", False)], + string="Fields", + ) + relation_ids = fields.One2many( + "bve.view.line", + "bve_view_id", + domain=[("join_node", "!=", -1), ("join_node", "!=", False)], + string="Relations", + ) + action_id = fields.Many2one("ir.actions.act_window", string="Action") + view_id = fields.Many2one("ir.ui.view", string="View") + group_ids = fields.Many2many( + "res.groups", + string="Groups", + help="User groups allowed to see the generated report; " + "if NO groups are specified the report will be public " + "for everyone.", + ) + user_ids = fields.Many2many( + "res.users", string="Users", compute="_compute_users", store=True + ) + query = fields.Text(compute="_compute_sql_query") + over_condition = fields.Text( + states={"draft": [("readonly", False)]}, + readonly=True, + help="Condition to be inserted in the OVER part " + "of the ID's row_number function.\n" + "For instance, 'ORDER BY t1.id' would create " + "IDs ordered in the same way as t1's IDs; otherwise " + "IDs are assigned with no specific order.", + ) + er_diagram_image = fields.Binary(compute="_compute_er_diagram_image") + + _sql_constraints = [ + ("name_uniq", "unique(name)", _("Custom BI View names must be unique!")), + ] + + @api.depends("line_ids") + def _compute_er_diagram_image(self): + for bve_view in self: + graph = pydot.Dot(graph_type="graph") + table_model_map = {} + for line in bve_view.field_ids: + if line.table_alias not in table_model_map: + table_alias_node = pydot.Node( + line.model_id.name + " " + line.table_alias, + style="filled", + shape="box", + fillcolor="#DDDDDD", + ) + table_model_map[line.table_alias] = table_alias_node + graph.add_node(table_model_map[line.table_alias]) + field_node = pydot.Node( + line.table_alias + "." + line.field_id.field_description, + label=line.description, + style="filled", + fillcolor="green", + ) + graph.add_node(field_node) + graph.add_edge( + pydot.Edge(table_model_map[line.table_alias], field_node) + ) + for line in bve_view.relation_ids: + field_description = line.field_id.field_description + table_alias = line.table_alias + diamond_node = pydot.Node( + line.ttype + " " + table_alias + "." + field_description, + label=table_alias + "." + field_description, + style="filled", + shape="diamond", + fillcolor="#D2D2FF", + ) + graph.add_node(diamond_node) + graph.add_edge( + pydot.Edge( + table_model_map[table_alias], + diamond_node, + labelfontcolor="#D2D2FF", + color="blue", + ) + ) + graph.add_edge( + pydot.Edge( + diamond_node, + table_model_map[line.join_node], + labelfontcolor="black", + color="blue", + ) + ) + try: + png_base64_image = base64.b64encode(graph.create_png()) + bve_view.er_diagram_image = png_base64_image + except Exception: + bve_view.er_diagram_image = False + + def _create_view_arch(self): + self.ensure_one() + + def _get_field_def(line): + field_type = line.view_field_type + return ''.format(line.name, field_type) + + bve_field_lines = self.field_ids.filtered("view_field_type") + return list(map(_get_field_def, bve_field_lines)) + + def _create_tree_view_arch(self): + self.ensure_one() + + def _get_field_attrs(line): + attr = line.list_attr + res = attr and '{}="{}"'.format(attr, line.description) or "" + return ''.format(line.name, res) + + bve_field_lines = self.field_ids.filtered(lambda l: l.in_list) + return list(map(_get_field_attrs, bve_field_lines.sorted("sequence"))) + + def _create_bve_view(self): + self.ensure_one() + View = self.env["ir.ui.view"].sudo() + + # delete old views + View.search([("model", "=", self.model_name)]).unlink() + + # create views + View.create( + [ + { + "name": "Pivot Analysis", + "type": "pivot", + "model": self.model_name, + "priority": 16, + "arch": """ + + {} + + """.format( + "".join(self._create_view_arch()) + ), + }, + { + "name": "Graph Analysis", + "type": "graph", + "model": self.model_name, + "priority": 16, + "arch": """ + + {} + + """.format( + "".join(self._create_view_arch()) + ), + }, + { + "name": "Search BI View", + "type": "search", + "model": self.model_name, + "priority": 16, + "arch": """ + + {} + + """.format( + "".join(self._create_view_arch()) + ), + }, + ] + ) + + # create Tree view + tree_view = View.create( + { + "name": "Tree Analysis", + "type": "tree", + "model": self.model_name, + "priority": 16, + "arch": """ + + {} + + """.format( + "".join(self._create_tree_view_arch()) + ), + } + ) + + # set the Tree view as the default one + action = ( + self.env["ir.actions.act_window"] + .sudo() + .create( + { + "name": self.name, + "res_model": self.model_name, + "type": "ir.actions.act_window", + "view_mode": "tree,graph,pivot", + "view_id": tree_view.id, + "context": "{'service_name': '%s'}" % self.name, + } + ) + ) + + self.write( + {"action_id": action.id, "view_id": tree_view.id, "state": "created"} + ) + + def _build_access_rules(self, model): + self.ensure_one() + + if not self.group_ids: + self.env["ir.model.access"].sudo().create( + { + "name": "read access to " + self.model_name, + "model_id": model.id, + "perm_read": True, + } + ) + else: + # read access only to model + access_vals = [ + { + "name": "read access to " + self.model_name, + "model_id": model.id, + "group_id": group.id, + "perm_read": True, + } + for group in self.group_ids + ] + self.env["ir.model.access"].sudo().create(access_vals) + + def _create_sql_view(self): + self.ensure_one() + + view_name = self.model_name.replace(".", "_") + query = self.query and self.query.replace("\n", " ") + + # robustness in case something went wrong + self._cr.execute("DROP TABLE IF EXISTS %s", (AsIs(view_name),)) + + # create postgres view + try: + with self.env.cr.savepoint(): + self.env.cr.execute( + "CREATE or REPLACE VIEW %s as (%s)", + ( + AsIs(view_name), + AsIs(query), + ), + ) + except Exception as e: + raise UserError( + _("Error creating the view '{query}':\n{error}").format( + query=query, error=e + ) + ) + + @api.depends("line_ids", "state", "over_condition") + def _compute_sql_query(self): + for bve_view in self: + tables_map = {} + select_str = "\n CAST(row_number() OVER ({}) as integer) AS id".format( + bve_view.over_condition or "" + ) + for line in bve_view.field_ids: + table = line.table_alias + select = line.field_id.name + as_name = line.name + select_str += ",\n {}.{} AS {}".format(table, select, as_name) + + if line.table_alias not in tables_map: + table = self.env[line.field_id.model_id.model]._table + tables_map[line.table_alias] = table + seen = set() + from_str = "" + if not bve_view.relation_ids and bve_view.field_ids: + first_line = bve_view.field_ids[0] + table = tables_map[first_line.table_alias] + from_str = "{} AS {}".format(table, first_line.table_alias) + for line in bve_view.relation_ids: + table = tables_map[line.table_alias] + table_format = "{} AS {}".format(table, line.table_alias) + if not from_str: + from_str += table_format + seen.add(line.table_alias) + if line.table_alias not in seen: + seen.add(line.table_alias) + from_str += "\n" + from_str += " LEFT" if line.left_join else "" + from_str += " JOIN {} ON {}.id = {}.{}".format( + table_format, + line.join_node, + line.table_alias, + line.field_id.name, + ) + if line.join_node not in seen: + from_str += "\n" + seen.add(line.join_node) + from_str += " LEFT" if line.left_join else "" + from_str += " JOIN {} AS {} ON {}.{} = {}.id".format( + tables_map[line.join_node], + line.join_node, + line.table_alias, + line.field_id.name, + line.join_node, + ) + bve_view.query = """SELECT %s\n\nFROM %s + """ % ( + AsIs(select_str), + AsIs(from_str), + ) + + def action_translations(self): + self.ensure_one() + if self.state != "created": + return + self = self.sudo() + model = self.env["ir.model"].search([("model", "=", self.model_name)]) + IrTranslation = self.env["ir.translation"] + IrTranslation.translate_fields("ir.model", model.id) + for field in model.field_id: + IrTranslation.translate_fields("ir.model.fields", field.id) + return { + "name": "Translations", + "res_model": "ir.translation", + "type": "ir.actions.act_window", + "view_mode": "tree", + "view_id": self.env.ref("base.view_translation_dialog_tree").id, + "target": "current", + "flags": {"search_view": True, "action_buttons": True}, + "domain": [ + "|", + "&", + ("res_id", "in", model.field_id.ids), + ("name", "=", "ir.model.fields,field_description"), + "&", + ("res_id", "=", model.id), + ("name", "=", "ir.model,name"), + ], + } + + def action_create(self): + self.ensure_one() + + # consistency checks + self._check_invalid_lines() + self._check_groups_consistency() + + # force removal of dirty views in case something went wrong + self.sudo().action_reset() + + # create sql view + self._create_sql_view() + + # create model and fields + bve_fields = self.line_ids.filtered(lambda l: not l.join_node) + model = ( + self.env["ir.model"] + .sudo() + .with_context(bve=True) + .create( + { + "name": self.name, + "model": self.model_name, + "state": "manual", + "field_id": [(0, 0, f) for f in bve_fields._prepare_field_vals()], + } + ) + ) + + # give access rights + self._build_access_rules(model) + + # create tree, graph and pivot views + self._create_bve_view() + + def _check_groups_consistency(self): + self.ensure_one() + + if not self.group_ids: + return + + for line_model in self.line_ids.mapped("model_id"): + res_count = ( + self.env["ir.model.access"] + .sudo() + .search( + [ + ("model_id", "=", line_model.id), + ("perm_read", "=", True), + "|", + ("group_id", "=", False), + ("group_id", "in", self.group_ids.ids), + ], + limit=1, + ) + ) + if not res_count: + access_records = ( + self.env["ir.model.access"] + .sudo() + .search( + [("model_id", "=", line_model.id), ("perm_read", "=", True)] + ) + ) + group_list = "" + for group in access_records.mapped("group_id"): + group_list += " * {}\n".format(group.full_name) + msg_title = _( + 'The model "%s" cannot be accessed by users with the ' + "selected groups only." % (line_model.name,) + ) + msg_details = _("At least one of the following groups must be added:") + raise UserError( + _("{}\n\n{}\n{}".format(msg_title, msg_details, group_list)) + ) + + def _check_invalid_lines(self): + self.ensure_one() + if not self.line_ids: + raise ValidationError(_("No data to process.")) + + invalid_lines = self.line_ids.filtered(lambda l: not l.model_id) + if invalid_lines: + missing_models = ", ".join(set(invalid_lines.mapped("model_name"))) + raise ValidationError( + _( + "Following models are missing: %s.\n" + "Probably some modules were uninstalled." % (missing_models,) + ) + ) + invalid_lines = self.line_ids.filtered(lambda l: not l.field_id) + if invalid_lines: + missing_fields = ", ".join(set(invalid_lines.mapped("field_name"))) + raise ValidationError( + _("Following fields are missing: {}.".format(missing_fields)) + ) + + def open_view(self): + self.ensure_one() + self._check_invalid_lines() + [action] = self.action_id.read() + action["display_name"] = _("BI View") + return action + + def copy(self, default=None): + self.ensure_one() + default = dict(default or {}, name=_("%s (copy)") % self.name) + return super().copy(default=default) + + def action_reset(self): + self.ensure_one() + + has_menus = False + if self.action_id: + action = "ir.actions.act_window,%d" % (self.action_id.id,) + menus = self.env["ir.ui.menu"].search([("action", "=", action)]) + has_menus = True if menus else False + menus.unlink() + + if self.action_id.view_id: + self.sudo().action_id.view_id.unlink() + self.sudo().action_id.unlink() + + self.env["ir.ui.view"].sudo().search([("model", "=", self.model_name)]).unlink() + models_to_delete = ( + self.env["ir.model"].sudo().search([("model", "=", self.model_name)]) + ) + if models_to_delete: + models_to_delete.with_context(_force_unlink=True).unlink() + + table_name = self.model_name.replace(".", "_") + tools.drop_view_if_exists(self.env.cr, table_name) + + self.state = "draft" + + if has_menus: + return {"type": "ir.actions.client", "tag": "reload"} + + def unlink(self): + if self.filtered(lambda v: v.state == "created"): + raise UserError( + _("You cannot delete a created view! " "Reset the view to draft first.") + ) + return super().unlink() + + @api.model + def _sync_lines_and_data(self, data): + line_ids = [(5, 0, 0)] + fields_info = [] + if data: + fields_info = json.loads(data) + + table_model_map = {} + for item in fields_info: + if item.get("join_node", -1) == -1: + table_model_map[item["table_alias"]] = item["model_id"] + + for sequence, field_info in enumerate(fields_info, start=1): + join_model_id = False + join_node = field_info.get("join_node", -1) + if join_node != -1 and table_model_map.get(join_node): + join_model_id = int(table_model_map[join_node]) + + line_ids += [ + ( + 0, + False, + { + "sequence": sequence, + "model_id": field_info["model_id"], + "table_alias": field_info["table_alias"], + "description": field_info["description"], + "field_id": field_info["id"], + "ttype": field_info["type"], + "row": field_info["row"], + "column": field_info["column"], + "measure": field_info["measure"], + "in_list": field_info["list"], + "relation": field_info.get("relation"), + "join_node": field_info.get("join_node"), + "join_model_id": join_model_id, + }, + ) + ] + return line_ids + + @api.constrains("line_ids") + def _constraint_line_ids(self): + models_with_tables = self.env.registry.models.keys() + for view in self: + nodes = view.line_ids.filtered(lambda n: n.join_node) + nodes_models = nodes.mapped("table_alias") + nodes_models += nodes.mapped("join_node") + not_nodes = view.line_ids.filtered(lambda n: not n.join_node) + not_nodes_models = not_nodes.mapped("table_alias") + err_msg = _("Inconsistent lines.") + if set(nodes_models) - set(not_nodes_models): + raise ValidationError(err_msg) + if len(set(not_nodes_models) - set(nodes_models)) > 1: + raise ValidationError(err_msg) + models = view.line_ids.mapped("model_id") + if models.filtered(lambda m: m.model not in models_with_tables): + raise ValidationError(_("Abstract models not supported.")) + + @api.model + def get_clean_list(self, data_dict): + serialized_data = data_dict + if type(data_dict) == str: + serialized_data = json.loads(data_dict) + table_alias_list = set() + for item in serialized_data: + if item.get("join_node", -1) in [-1, False]: + table_alias_list.add(item["table_alias"]) + + for item in serialized_data: + if item.get("join_node", -1) not in [-1, False]: + if item["table_alias"] not in table_alias_list: + serialized_data.remove(item) + elif item["join_node"] not in table_alias_list: + serialized_data.remove(item) + + return json.dumps(serialized_data) diff --git a/bi_view_editor/models/bve_view_line.py b/bi_view_editor/models/bve_view_line.py new file mode 100644 index 000000000..124f97fd0 --- /dev/null +++ b/bi_view_editor/models/bve_view_line.py @@ -0,0 +1,118 @@ +# Copyright 2015-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import _, api, fields, models +from odoo.exceptions import ValidationError + + +class BveViewLine(models.Model): + _name = "bve.view.line" + _description = "BI View Editor Lines" + + name = fields.Char(compute="_compute_name") + sequence = fields.Integer(default=1) + bve_view_id = fields.Many2one("bve.view", ondelete="cascade") + model_id = fields.Many2one("ir.model") + model_name = fields.Char(related="model_id.model", store=True, string="Model Name") + table_alias = fields.Char(required=True) + join_model_id = fields.Many2one("ir.model") + field_id = fields.Many2one("ir.model.fields") + field_name = fields.Char(compute="_compute_model_field_name", store=True) + ttype = fields.Char(string="Type") + description = fields.Char(translate=True) + relation = fields.Char() + join_node = fields.Char() + left_join = fields.Boolean() + + row = fields.Boolean() + column = fields.Boolean() + measure = fields.Boolean() + in_list = fields.Boolean() + list_attr = fields.Selection( + [("sum", "Sum"), ("avg", "Average")], string="List Attribute", default="sum" + ) + view_field_type = fields.Char(compute="_compute_view_field_type") + + @api.depends("row", "column", "measure") + def _compute_view_field_type(self): + for line in self: + row = line.row and "row" + column = line.column and "col" + measure = line.measure and "measure" + line.view_field_type = row or column or measure + + @api.constrains("row", "column", "measure") + def _constrains_options_check(self): + measure_types = ["float", "integer", "monetary"] + for line in self.filtered(lambda l: l.row or l.column): + if line.join_model_id or line.ttype in measure_types: + err_msg = _("This field cannot be a row or a column.") + raise ValidationError(err_msg) + for line in self.filtered(lambda l: l.measure): + if line.join_model_id or line.ttype not in measure_types: + err_msg = _("This field cannot be a measure.") + raise ValidationError(err_msg) + + @api.constrains("table_alias", "field_id") + def _constrains_unique_fields_check(self): + seen = set() + for line in self.mapped("bve_view_id.field_ids"): + if ( + line.table_alias, + line.field_id.id, + ) not in seen: + seen.add( + ( + line.table_alias, + line.field_id.id, + ) + ) + else: + raise ValidationError( + _("Field %s/%s is duplicated.\n" "Please remove the duplications.") + % (line.field_id.model, line.field_id.name) + ) + + @api.depends("field_id", "sequence") + def _compute_name(self): + for line in self: + line.name = False + if line.field_id: + line.name = "x_bve_{}_{}".format(line.table_alias, line.field_id.name) + + @api.depends("field_id") + def _compute_model_field_name(self): + for line in self: + line.field_name = False + if line.field_id: + line.field_name = "{} ({})".format(line.description, line.model_name) + + def _prepare_field_vals(self): + vals_list = [] + for line in self: + field = line.field_id + vals = { + "name": line.name, + "complete_name": field.complete_name, + "model": line.bve_view_id.model_name, + "relation": field.relation, + "field_description": line.description, + "ttype": field.ttype, + "selection": field.selection, + "size": field.size, + "state": "manual", + "readonly": True, + "groups": [(6, 0, field.groups.ids)], + } + if vals["ttype"] == "monetary": + vals.update({"ttype": "float"}) + if field.ttype == "selection" and not field.selection: + model_obj = self.env[field.model_id.model] + selection = model_obj._fields[field.name].selection + if callable(selection): + selection_domain = selection(model_obj) + else: + selection_domain = selection + vals.update({"selection": str(selection_domain)}) + vals_list.append(vals) + return vals_list diff --git a/bi_view_editor/models/ir_model.py b/bi_view_editor/models/ir_model.py new file mode 100644 index 000000000..8feeaf4ad --- /dev/null +++ b/bi_view_editor/models/ir_model.py @@ -0,0 +1,217 @@ +# Copyright 2015-2019 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from collections import defaultdict + +from odoo import api, models + +NO_BI_MODELS = ["fetchmail.server"] + +NO_BI_TTYPES = ["many2many", "one2many", "html", "binary", "reference"] + + +def dict_for_field(field): + return { + "id": field.id, + "name": field.name, + "description": field.field_description, + "type": field.ttype, + "relation": field.relation, + "custom": False, + "model_id": field.model_id.id, + "model": field.model_id.model, + "model_name": field.model_id.name, + } + + +def dict_for_model(model): + return {"id": model.id, "name": model.name, "model": model.model} + + +class IrModel(models.Model): + _inherit = "ir.model" + + @api.model + def _filter_bi_models(self, model): + def _check_name(model_model): + if model_model in NO_BI_MODELS: + return 1 + return 0 + + def _check_startswith(model_model): + if ( + model_model.startswith("workflow") + or model_model.startswith("ir.") + or model_model.startswith("base_") + ): + return 1 + return 0 + + def _check_contains(model_model): + if ( + "mail" in model_model + or "report" in model_model + or "edi." in model_model + ): + return 1 + return 0 + + def _check_unknown(model_name): + if model_name == "Unknown" or "." in model_name: + return 1 + return 0 + + model_model = model["model"] + model_name = model["name"] + count_check = 0 + count_check += _check_name(model_model) + count_check += _check_startswith(model_model) + count_check += _check_contains(model_model) + count_check += _check_unknown(model_name) + if not count_check: + return self.env["ir.model.access"].check(model["model"], "read", False) + return False + + def get_model_list(self, model_table_map): + if not model_table_map: + return [] + domain = [ + ("model_id", "in", list(model_table_map.keys())), + ("store", "=", True), + ("ttype", "=", "many2one"), + ] + fields = self.env["ir.model.fields"].sudo().search(domain) + model_list = [] + for field in fields: + for table_alias in model_table_map[field.model_id.id]: + model_list.append( + dict( + dict_for_field(field), + table_alias=table_alias, + join_node=-1, + ) + ) + return model_list + + def get_relation_list(self, model_table_map): + if not model_table_map: + return [] + model_names = {} + for model in self.sudo().browse(model_table_map.keys()): + model_names.update({model.model: model.id}) + + domain = [ + ("relation", "in", list(model_names.keys())), + ("store", "=", True), + ("ttype", "=", "many2one"), + ] + fields = self.env["ir.model.fields"].sudo().search(domain) + relation_list = [] + for field in fields: + model_id = model_names[field.relation] + for join_node in model_table_map[model_id]: + relation_list.append( + dict(dict_for_field(field), join_node=join_node, table_alias=-1) + ) + return relation_list + + @api.model + def _get_related_models_domain(self, model_table_map): + domain = [("transient", "=", False)] + if model_table_map: + model_list = self.get_model_list(model_table_map) + relation_list = self.get_relation_list(model_table_map) + model_ids = [f["model_id"] for f in relation_list + model_list] + model_ids += list(model_table_map.keys()) + relations = [f["relation"] for f in model_list] + domain += ["|", ("id", "in", model_ids), ("model", "in", relations)] + return domain + + @api.model + def get_related_models(self, model_table_map): + """Return list of model dicts for all models that can be + joined with the already selected models. + """ + domain = self._get_related_models_domain(model_table_map) + return self.sudo().search(domain, order="name asc") + + @api.model + def get_models(self, table_model_map=None): + """Return list of model dicts for all available models.""" + self = self.with_context(lang=self.env.user.lang) + model_table_map = defaultdict(list) + for k, v in (table_model_map or {}).items(): + model_table_map[v].append(k) + + models = self.get_related_models(model_table_map) + + # filter out abstract models (they do not have DB tables) + non_abstract_models = self.env.registry.models.keys() + models = models.filtered(lambda m: m.model in non_abstract_models) + + return list(map(dict_for_model, models)) + + @api.model + def get_join_nodes(self, field_data, new_field): + """Return list of field dicts of join nodes + + Return all possible join nodes to add new_field to the query + containing model_ids. + """ + + def remove_duplicate_nodes(join_nodes): + seen = set() + nodes_list = [] + for node in join_nodes: + node_tuple = tuple(node.items()) + if node_tuple not in seen: + seen.add(node_tuple) + nodes_list.append(node) + return nodes_list + + self = self.with_context(lang=self.env.user.lang) + + keys = [] + model_table_map = defaultdict(list) + for field in field_data: + model_table_map[field["model_id"]].append(field["table_alias"]) + if field.get("join_node", -1) != -1: + keys.append((field["table_alias"], field["id"])) + + # nodes in current model + existing_aliases = model_table_map[new_field["model_id"]] + join_nodes = [{"table_alias": alias} for alias in existing_aliases] + + # nodes in past selected models + for field in self.get_model_list(model_table_map): + if new_field["model"] == field["relation"]: + if (field["table_alias"], field["id"]) not in keys: + join_nodes.append(field) + + # nodes in new model + for field in self.get_relation_list(model_table_map): + if new_field["model_id"] == field["model_id"]: + if (field["table_alias"], field["id"]) not in keys: + join_nodes.append(field) + + return remove_duplicate_nodes(join_nodes) + + @api.model + def get_fields(self, model_id): + self = self.with_context(lang=self.env.user.lang) + + fields = ( + self.env["ir.model.fields"] + .sudo() + .search( + [ + ("model_id", "=", model_id), + ("store", "=", True), + ("name", "not in", models.MAGIC_COLUMNS), + ("ttype", "not in", NO_BI_TTYPES), + ], + order="field_description desc", + ) + ) + fields_dict = list(map(dict_for_field, fields)) + return fields_dict diff --git a/bi_view_editor/models/models.py b/bi_view_editor/models/models.py new file mode 100644 index 000000000..9f542c166 --- /dev/null +++ b/bi_view_editor/models/models.py @@ -0,0 +1,48 @@ +# Copyright 2017-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import logging + +from odoo import _, api, models +from odoo.exceptions import UserError + +_logger = logging.getLogger(__name__) + + +@api.model +def _bi_view(_name): + return _name.startswith("x_bve.") + + +_auto_init_orig = models.BaseModel._auto_init + + +def _auto_init(self): + + # This monkey patch is meant to fix an error (probably + # introduced by https://github.com/odoo/odoo/pull/15412), while + # running an update all. The _auto_init() method invoked during + # an update all is the one of BaseModel, and not the one of Base. + + # This monkey patch seems not working if defined inside the post_load() + + if _bi_view(self._name): + return + return _auto_init_orig(self) + + +models.BaseModel._auto_init = _auto_init + + +class Base(models.AbstractModel): + _inherit = "base" + + @api.model + def _read_group_process_groupby(self, gb, query): + if not _bi_view(self._name): + return super()._read_group_process_groupby(gb, query) + + split = gb.split(":") + if split[0] not in self._fields: + raise UserError(_("No data to be displayed.")) + return super()._read_group_process_groupby(gb, query) diff --git a/bi_view_editor/readme/CONTRIBUTORS.rst b/bi_view_editor/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..14cc58d68 --- /dev/null +++ b/bi_view_editor/readme/CONTRIBUTORS.rst @@ -0,0 +1,8 @@ +* Simon Janssens +* Diego Luis Neto +* Dennis Sluijk +* Kevin Graveman +* Richard Dijkstra +* Andrea Stirpe +* Antonio Esposito +* Jordi Ballester Alomar diff --git a/bi_view_editor/readme/CREDITS.rst b/bi_view_editor/readme/CREDITS.rst new file mode 100644 index 000000000..5dc62467d --- /dev/null +++ b/bi_view_editor/readme/CREDITS.rst @@ -0,0 +1,6 @@ +Funders +------- + +The development of this module for Odoo 11.0 has been financially supported by: + +* IDEAL Connaissances SAS https://www.idealconnaissances.com diff --git a/bi_view_editor/readme/DESCRIPTION.rst b/bi_view_editor/readme/DESCRIPTION.rst new file mode 100644 index 000000000..f3f712b0f --- /dev/null +++ b/bi_view_editor/readme/DESCRIPTION.rst @@ -0,0 +1,14 @@ +BI View Editor is a tool integrated in Odoo that allows users define and +execute their own reports without the need to code. + +Purpose: + +* The BI View Editor is used to create reports not already contained in the + standard Odoo, combining data from existing sources. + +* It has been designed to be used by users with little or no knowledge of + the technical architecture of Odoo. Users visually link business objects + and select the fields to visualize. + +* The BI View Editor offers users different types of representations, + including tree, graph, pivot views. diff --git a/bi_view_editor/readme/INSTALL.rst b/bi_view_editor/readme/INSTALL.rst new file mode 100644 index 000000000..be748ad7b --- /dev/null +++ b/bi_view_editor/readme/INSTALL.rst @@ -0,0 +1,18 @@ +In the Odoo configuration file add ``bi_view_editor`` in the list +``server_wide_modules``: + +.. code-block:: ini + + [options] + (...) + server_wide_modules = web,bi_view_editor + (...) + +Alternatively specify ``--load=bi_view_editor`` when starting Odoo by command line. + +Optionally it is possible to enable the view of the ER Diagram. For this you +need to install `Graphviz`, an open source graph visualization software: + +.. code-block:: bash + + ``sudo apt-get install graphviz`` diff --git a/bi_view_editor/readme/ROADMAP.rst b/bi_view_editor/readme/ROADMAP.rst new file mode 100644 index 000000000..32e4e2d00 --- /dev/null +++ b/bi_view_editor/readme/ROADMAP.rst @@ -0,0 +1,7 @@ +* Non-stored fields and many2many fields are not supported. +* Provide a tutorial (eg. a working example of usage). +* Find better ways to extend the *_auto_init()* without override. +* Possibly avoid the monkey patches. +* Data the user has no access to (e.g. in a multi company situation) can be + viewed by making a view. Would be nice if models available to select when + creating a view are limited to the ones that have intersecting groups. diff --git a/bi_view_editor/readme/USAGE.rst b/bi_view_editor/readme/USAGE.rst new file mode 100644 index 000000000..064ab5610 --- /dev/null +++ b/bi_view_editor/readme/USAGE.rst @@ -0,0 +1,29 @@ +To graphically design your analysis data-set: + +- From the Dashboards menu, select "Custom BI Views" +- Browse trough the business objects in the "Query Builder" tab +- Pick the interesting fields (Drag & Drop) +- For each selected field, right-click on the Options column and select whether + it's a row, column or measure; if you want to remove the field from the list + view, unflag the checkbox ´List´ in the Options column +- Save and click "Generate BI View" +- Click "Open BI View" to view the result + +To access the created BI View with a dedicated menu: + +- If module Dashboard (board) is installed, the standard "Add to My Dashboard" + functionality would be available +- Click "Create a menu" to create a new menu item directly linked to your new + BI view (this feature is available in developer mode); when the BI view is + reset back to draft this menu will be removed, and you will need to re-create + the menu entry. + +A more advanced UI is also available under the "Details" tab. It provides extra +possibilities for more advanced users, like to use LEFT JOIN instead of the +default INNER JOIN. + +It also possible to improve the IDs generation for new views by adding an +`Over Condition` in the "SQL" tab, see https://www.postgresql.org/docs/current/sql-expressions.html#SYNTAX-WINDOW-FUNCTIONS +for further details. +For instance, an ORDER BY clause helps preventing unreliable behavior when +filtering the generated views. diff --git a/bi_view_editor/security/ir.model.access.csv b/bi_view_editor/security/ir.model.access.csv new file mode 100644 index 000000000..dd6cc2daf --- /dev/null +++ b/bi_view_editor/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_bve_view_everyone,bve.view,bi_view_editor.model_bve_view,,1,1,1,1 +access_bve_view_line,access_bve_view_line,model_bve_view_line,,1,1,1,1 diff --git a/bi_view_editor/security/rules.xml b/bi_view_editor/security/rules.xml new file mode 100644 index 000000000..f3cbc39aa --- /dev/null +++ b/bi_view_editor/security/rules.xml @@ -0,0 +1,11 @@ + + + + bve_view read access + + + + ['|',('user_ids','=',False),('user_ids','in',user.id)] + + + diff --git a/bi_view_editor/static/description/icon.png b/bi_view_editor/static/description/icon.png new file mode 100644 index 000000000..bd6f94bca Binary files /dev/null and b/bi_view_editor/static/description/icon.png differ diff --git a/bi_view_editor/static/description/index.html b/bi_view_editor/static/description/index.html new file mode 100644 index 000000000..a3e7a8095 --- /dev/null +++ b/bi_view_editor/static/description/index.html @@ -0,0 +1,514 @@ + + + + + + +BI View Editor + + + +
+

BI View Editor

+ + +

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

+

BI View Editor is a tool integrated in Odoo that allows users define and +execute their own reports without the need to code.

+

Purpose:

+
    +
  • The BI View Editor is used to create reports not already contained in the +standard Odoo, combining data from existing sources.
  • +
  • It has been designed to be used by users with little or no knowledge of +the technical architecture of Odoo. Users visually link business objects +and select the fields to visualize.
  • +
  • The BI View Editor offers users different types of representations, +including tree, graph, pivot views.
  • +
+

Table of contents

+ +
+

Installation

+

In the Odoo configuration file add bi_view_editor in the list +server_wide_modules:

+
+[options]
+(...)
+server_wide_modules = web,bi_view_editor
+(...)
+
+

Alternatively specify --load=bi_view_editor when starting Odoo by command line.

+

Optionally it is possible to enable the view of the ER Diagram. For this you +need to install Graphviz, an open source graph visualization software:

+
+``sudo apt-get install graphviz``
+
+
+
+

Usage

+

To graphically design your analysis data-set:

+
    +
  • From the Dashboards menu, select “Custom BI Views”
  • +
  • Browse trough the business objects in the “Query Builder” tab
  • +
  • Pick the interesting fields (Drag & Drop)
  • +
  • For each selected field, right-click on the Options column and select whether +it’s a row, column or measure; if you want to remove the field from the list +view, unflag the checkbox ´List´ in the Options column
  • +
  • Save and click “Generate BI View”
  • +
  • Click “Open BI View” to view the result
  • +
+

To access the created BI View with a dedicated menu:

+
    +
  • If module Dashboard (board) is installed, the standard “Add to My Dashboard” +functionality would be available
  • +
  • Click “Create a menu” to create a new menu item directly linked to your new +BI view (this feature is available in developer mode); when the BI view is +reset back to draft this menu will be removed, and you will need to re-create +the menu entry.
  • +
+

A more advanced UI is also available under the “Details” tab. It provides extra +possibilities for more advanced users, like to use LEFT JOIN instead of the +default INNER JOIN.

+

It also possible to improve the IDs generation for new views by adding an +Over Condition in the “SQL” tab, see https://www.postgresql.org/docs/current/sql-expressions.html#SYNTAX-WINDOW-FUNCTIONS +for further details. +For instance, an ORDER BY clause helps preventing unreliable behavior when +filtering the generated views.

+
+
+

Known issues / Roadmap

+
    +
  • Non-stored fields and many2many fields are not supported.
  • +
  • Provide a tutorial (eg. a working example of usage).
  • +
  • Find better ways to extend the _auto_init() without override.
  • +
  • Possibly avoid the monkey patches.
  • +
  • Data the user has no access to (e.g. in a multi company situation) can be +viewed by making a view. Would be nice if models available to select when +creating a view are limited to the ones that have intersecting groups.
  • +
+
+
+

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 smashing it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Onestein
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+
+

Funders

+

The development of this module for Odoo 11.0 has been financially supported by:

+ +
+
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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

+

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

+

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

+
+
+
+ + diff --git a/bi_view_editor/static/description/main_screenshot.png b/bi_view_editor/static/description/main_screenshot.png new file mode 100644 index 000000000..66789facc Binary files /dev/null and b/bi_view_editor/static/description/main_screenshot.png differ diff --git a/bi_view_editor/static/src/css/bve.css b/bi_view_editor/static/src/css/bve.css new file mode 100644 index 000000000..83fe9ae47 --- /dev/null +++ b/bi_view_editor/static/src/css/bve.css @@ -0,0 +1,198 @@ +.oe_form_field_bi_editor { + /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);*/ + border: 1px solid #dddddd; +} + +.oe_form_field_bi_editor .header, +.oe_form_field_bi_editor .footer { + width: 100%; + height: 50px; + background-color: #7c7bad; + color: #000; +} + +.oe_form_field_bi_editor .footer { + background-color: #fff; + border-top: 1px solid #dddddd; +} + +.oe_form_field_bi_editor .header .left, +.oe_form_field_bi_editor .footer .left { + width: 75%; + float: left; + line-height: 50px; + padding-left: 10px; + padding-top: 13px; +} + +.oe_form_field_bi_editor .header .right, +.oe_form_field_bi_editor .footer .right { + width: 25%; + float: right; + padding-top: 13px; + padding-right: 15px; + text-align: right; +} + +.oe_form_field_bi_editor .body { + padding-bottom: 0; +} + +.oe_form_field_bi_editor .body .left { + float: left; + width: 30%; + box-sizing: border-box; + border-right: 1px solid #dddddd; +} + +.oe_form_field_bi_editor .body .left .search-bar { + height: 23px; + width: 100%; + position: relative; +} + +.oe_form_field_bi_editor .body .left .search-bar input { + width: 100%; + border-radius: 0; + border-left: 0; + border-right: 0; + border-top: 0; + padding-left: 18px; + padding-top: 4px; + position: absolute; + left: 0; + top: 0; + z-index: 1; +} + +.oe_form_field_bi_editor .body .left .search-bar span { + position: absolute; + left: 3px; + top: 5px; + z-index: 2; +} + +.oe_form_field_bi_editor .body .left .class-list { + height: 400px; + overflow-y: scroll; + overflow-x: hidden; +} + +.oe_form_field_bi_editor .body .left .class-list .class { + font-weight: bold; + padding-bottom: 5px; + padding-top: 5px; + padding-left: 10px; + cursor: pointer; +} + +.oe_form_field_bi_editor .body .left .class-list.readonly { + opacity: 0.35; +} + +.oe_form_field_bi_editor .body .left .class-list .class.readonly { + cursor: default; +} + +.oe_form_field_bi_editor .body .left .class-list .class:hover { + background-color: #7c7bad; + color: #fff; +} + +.oe_form_field_bi_editor .body .left .class-list .field { + font-weight: normal; + padding-left: 20px; + padding-top: 3px; + padding-bottom: 3px; + cursor: pointer; +} + +.oe_form_field_bi_editor .body .right { + width: 70%; + float: left; + box-sizing: border-box; + height: 423px; + overflow-y: scroll; + overflow-x: hidden; +} + +.oe_form_field_bi_editor .body .right .field-list { + width: 100%; +} + +.oe_form_field_bi_editor .body .right .field-list th, +.oe_form_field_bi_editor .body .right .field-list td { + padding-left: 10px; + padding-top: 6px; + padding-bottom: 6px; + vertical-align: middle; +} + +.oe_form_field_bi_editor .body .right .field-list tbody tr button.delete-button, +.oe_form_field_bi_editor .body .right .field-list tbody tr button.delete-button:hover { + background-color: transparent; + border: none; + background-image: none; + padding: 0; + cursor: pointer; +} + +.oe_form_field_bi_editor .body .right .field-list tbody tr:hover { + background-color: #ddd; +} + +.oe_form_field_bi_editor .body .right .field-list tbody tr.join-node { + background-color: #d2d2ff; + text-align: center; + border-top: 1px solid #dddddd; +} + +.oe_form_field_bi_editor .context-menu, +.oe_form_field_bi_editor .context-menu ul { + z-index: 1000; + position: fixed; + background-color: #fff; + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); + border: 1px solid #dddddd; + list-style-type: none; + padding: 0; + width: 175px; +} + +.oe_form_field_bi_editor .context-menu .checkbox label { + display: block; +} + +.oe_form_field_bi_editor .context-menu li { + padding: 5px; + cursor: pointer; +} + +.oe_form_field_bi_editor .clear-btn { + display: inline-block; +} + +.oe_form_field_bi_editor .context-menu li:hover { + background-color: #7c7bad; + color: #fff; +} + +.oe_form_field_bi_editor .context-menu ul { + display: none; + margin-left: 165px; + margin-top: -24px; +} + +.oe_form_field_bi_editor .context-menu ul:hover { + display: none; + margin-left: 165px; + margin-top: -24px; +} + +.clear { + clear: both; +} + +.oe_bi_view_editor_join_node_dialog li { + cursor: pointer; +} diff --git a/bi_view_editor/static/src/js/bi_view_editor.FieldList.js b/bi_view_editor/static/src/js/bi_view_editor.FieldList.js new file mode 100644 index 000000000..8a70c2b63 --- /dev/null +++ b/bi_view_editor/static/src/js/bi_view_editor.FieldList.js @@ -0,0 +1,256 @@ +/* Copyright 2015-2019 Onestein () + * License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ + +odoo.define("bi_view_editor.FieldList", function (require) { + "use strict"; + + var core = require("web.core"); + var qweb = core.qweb; + var Widget = require("web.Widget"); + var mixins = require("web.mixins"); + + var FieldListContextMenu = Widget.extend( + _.extend({}, mixins.EventDispatcherMixin, { + start: function () { + var res = this._super.apply(this, arguments); + this.$el.mouseleave(function () { + $(this).addClass("d-none"); + }); + return res; + }, + open: function (x, y) { + this.$el.css({ + left: x + "px", + top: y + "px", + }); + this.$el.removeClass("d-none"); + return this; + }, + }) + ); + + var FieldListFieldContextMenu = FieldListContextMenu.extend({ + template: "bi_view_editor.FieldList.FieldContextMenu", + open: function (x, y, $item) { + var field = $item.data("field"); + this.$el.find(".checkbox-column").prop("checked", field.column); + this.$el.find(".checkbox-row").prop("checked", field.row); + this.$el.find(".checkbox-measure").prop("checked", field.measure); + this.$el.find(".checkbox-list").prop("checked", field.list); + + var measureable = + field.type === "float" || + field.type === "integer" || + field.type === "monetary"; + this.$el.find(".checkbox-column").attr("disabled", measureable); + this.$el.find(".checkbox-row").attr("disabled", measureable); + this.$el.find(".checkbox-measure").attr("disabled", !measureable); + this.$el.find(".checkbox-list").attr("disabled", false); + + var events = this._super(x, y, field); + this.$el.find("input").unbind("change"); + this.$el.find("input").change(function () { + var $checkbox = $(this); + var property = $checkbox.attr("data-for"); + field[property] = $checkbox.is(":checked"); + events.trigger("change", field, $item); + }); + + return events; + }, + }); + + var FieldListJoinContextMenu = FieldListContextMenu.extend({ + template: "bi_view_editor.FieldList.JoinContextMenu", + open: function (x, y, $item) { + var node = $item.data("field"); + this.$el.find(".checkbox-join-left").prop("checked", node.join_left); + + var events = this._super(x, y, node); + this.$el.find("input").unbind("change"); + this.$el.find("input").change(function () { + var $checkbox = $(this); + var property = $checkbox.attr("data-for"); + node[property] = $checkbox.is(":checked"); + events.trigger("change", node); + }); + return events; + }, + }); + + var FieldList = Widget.extend({ + template: "bi_view_editor.FieldList", + events: { + "click .delete-button": "removeClicked", + 'keyup input[name="description"]': "keyupDescription", + }, + start: function () { + var res = this._super.apply(this, arguments); + this.contextmenu = new FieldListFieldContextMenu(this); + this.contextmenu.appendTo(this.$el); + this.contextmenu.on( + "change", + this, + function (f, $item) { + $item.data("field", f); + this.refreshItem($item); + this.trigger("updated"); + }.bind(this) + ); + this.contextmenu_join = new FieldListJoinContextMenu(this); + this.contextmenu_join.appendTo(this.$el); + this.contextmenu_join.on( + "change", + this, + function (f, $item) { + $item.data("field", f); + this.refreshItem($item); + this.trigger("updated"); + }.bind(this) + ); + this.$table = this.$el.find("tbody"); + this.mode = null; + return res; + }, + setMode: function (mode) { + if (mode === "readonly") { + this.$el.find('input[type="text"]').attr("disabled", true); + this.$el.find(".delete-button").addClass("d-none"); + } else { + this.$el.find('input[type="text"]').removeAttr("disabled"); + this.$el.find(".delete-button").removeClass("d-none"); + } + this.mode = mode; + }, + get: function () { + return $.makeArray( + this.$el.find("tbody tr").map(function () { + var field = $(this).data("field"); + field.description = $(this).find('input[name="description"]').val(); + return field; + }) + ); + }, + getModelIds: function () { + var model_ids = {}; + this.$el.find("tbody tr").each(function () { + var data = $(this).data("field"); + model_ids[data.table_alias] = data.model_id; + }); + return model_ids; + }, + getModelData: function () { + var model_data = {}; + this.$el.find("tbody tr").each(function () { + var data = $(this).data("field"); + model_data[data.table_alias] = { + model_id: data.model_id, + model_name: data.model_name, + }; + }); + return model_data; + }, + add: function (field) { + var self = this; + field.row = typeof field.row === "undefined" ? false : field.row; + field.column = typeof field.column === "undefined" ? false : field.column; + field.measure = + typeof field.measure === "undefined" ? false : field.measure; + field.list = typeof field.list === "undefined" ? true : field.list; + field._id = + typeof field._id === "undefined" ? _.uniqueId("node_") : field._id; + if (field.join_node) { + field.join_left = + typeof field.join_left === "undefined" ? false : field.join_left; + } + + var i = 0; + var name = field.name; + while ( + this.get().filter(function (item) { + return item.name === field.name; + }).length > 0 + ) { + field.name = name + "_" + i; + i++; + } + + // Render table row + var $html = $( + qweb.render( + field.join_node + ? "bi_view_editor.JoinListItem" + : "bi_view_editor.FieldListItem", + { + field: field, + } + ) + ) + .data("field", field) + .contextmenu(function (e) { + var $item = $(this); + if (self.mode === "readonly") { + return; + } + e.preventDefault(); + self.openContextMenu($item, e.pageX, e.pageY); + }); + + this.$el.find("tbody").append($html); + }, + remove: function (id) { + var $item = this.$el.find('tr[data-id="' + id + '"]'); + $item.remove(); + this.trigger("removed", id); + }, + set: function (fields) { + var set_fields = fields; + if (!set_fields) { + set_fields = []; + } + this.$el.find("tbody tr").remove(); + for (var i = 0; i < set_fields.length; i++) { + this.add(set_fields[i]); + } + }, + openContextMenu: function ($item, x, y) { + var field = $item.data("field"); + var contextmenu = field.join_node + ? this.contextmenu_join + : this.contextmenu; + // Temporary disable contextmenu for join node (until left join is implemented) + if (field.join_node) { + return; + } + contextmenu.open(x - 20, y - 20, $item); + }, + refreshItem: function ($item) { + var data = $item.data("field"); + var $attributes = $item.find("span[data-for], img[data-for]"); + $.each($attributes, function () { + var $attribute = $(this); + var value = data[$attribute.attr("data-for")]; + if (value) { + $attribute.removeClass("d-none"); + } else { + $attribute.addClass("d-none"); + } + }); + }, + removeClicked: function (e) { + var $button = $(e.currentTarget); + var id = $button.attr("data-id"); + this.remove(id); + }, + keyupDescription: function () { + this.trigger("updated"); + }, + }); + + return { + FieldList: FieldList, + FieldListContextMenu: FieldListContextMenu, + FieldListFieldContextMenu: FieldListFieldContextMenu, + FieldListJoinContextMenu: FieldListJoinContextMenu, + }; +}); diff --git a/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js b/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js new file mode 100644 index 000000000..12f072e77 --- /dev/null +++ b/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js @@ -0,0 +1,55 @@ +/* Copyright 2015-2019 Onestein () + * License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ + +odoo.define("bi_view_editor.JoinNodeDialog", function (require) { + "use strict"; + + var Dialog = require("web.Dialog"); + var core = require("web.core"); + var qweb = core.qweb; + var _t = core._t; + + var JoinNodeDialog = Dialog.extend({ + xmlDependencies: Dialog.prototype.xmlDependencies.concat([ + "/bi_view_editor/static/src/xml/bi_view_editor.xml", + ]), + events: { + "click li": "choiceClicked", + }, + init: function (parent, options, choices, model_data) { + this.choices = choices; + // Prepare data for view + for (var i = 0; i < choices.length; i++) { + if (choices[i].join_node !== -1 && choices[i].table_alias !== -1) { + choices[i].model_name = + model_data[choices[i].table_alias].model_name; + } + choices[i].index = i; + } + + var defaults = _.defaults(options || {}, { + title: _t("Join..."), + dialogClass: "oe_act_window", + $content: qweb.render("bi_view_editor.JoinNodeDialog", { + choices: choices, + }), + buttons: [ + { + text: _t("Cancel"), + classes: "btn-default o_form_button_cancel", + close: true, + }, + ], + }); + this._super(parent, defaults); + }, + choiceClicked: function (e) { + this.trigger("chosen", { + choice: this.choices[$(e.currentTarget).attr("data-index")], + }); + this.close(); + }, + }); + + return JoinNodeDialog; +}); diff --git a/bi_view_editor/static/src/js/bi_view_editor.ModelList.js b/bi_view_editor/static/src/js/bi_view_editor.ModelList.js new file mode 100644 index 000000000..2883f740d --- /dev/null +++ b/bi_view_editor/static/src/js/bi_view_editor.ModelList.js @@ -0,0 +1,170 @@ +/* Copyright 2015-2019 Onestein () + * License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ + +odoo.define("bi_view_editor.ModelList", function (require) { + "use strict"; + + var Widget = require("web.Widget"); + var core = require("web.core"); + var qweb = core.qweb; + + var ModelList = Widget.extend({ + template: "bi_view_editor.ModelList", + events: { + "keyup .search-bar > input": "filterChanged", + }, + init: function (parent) { + var res = this._super(parent); + this.active_models = []; + this.cache_fields = {}; + this.current_filter = ""; + this.mode = null; + return res; + }, + setMode: function (mode) { + if (mode === "readonly") { + this.$el.find(".search-bar").attr("disabled", true); + this.$el.find(".class-list, .class").addClass("readonly"); + } else { + this.$el.find(".search-bar").attr("disabled", false); + this.$el.find(".class-list, .class").removeClass("readonly"); + } + this.mode = mode; + }, + isActive: function (id) { + return this.active_models.indexOf(id) !== -1; + }, + removeAsActive: function (id) { + var i = this.active_models.indexOf(id); + this.active_models.splice(i, 1); + }, + addAsActive: function (id) { + this.active_models.push(id); + }, + loadModels: function (model_ids) { + return this._rpc({ + model: "ir.model", + method: "get_models", + args: model_ids ? [model_ids] : [], + }); + }, + loadFields: function (model_id) { + if (!(model_id in this.cache_fields)) { + var deferred = this._rpc({ + model: "ir.model", + method: "get_fields", + args: [model_id], + }); + this.cache_fields[model_id] = deferred; + } + return this.cache_fields[model_id]; + }, + populateModels: function (models) { + var self = this; + this.$el.find(".class-list").html(""); + + _.each(models, function (model) { + var $html = $( + qweb.render("bi_view_editor.ModelListItem", { + id: model.id, + model: model.model, + name: model.name, + }) + ); + $html + .find(".class") + .data("model", model) + .click(function () { + self.modelClicked($(this)); + }); + self.$el.find(".class-list").append($html); + + if (self.isActive(model.id)) { + self.loadFields(model.id).then(function (fields) { + self.populateFields(fields, model.id); + }); + } + }); + }, + populateFields: function (fields, model_id) { + var self = this; + if (!model_id && fields.length === 0) { + return; + } + var data_model_id = model_id; + if (!data_model_id) { + data_model_id = fields[0].model_id; + } + var $model_item = this.$el.find(".class[data-id='" + data_model_id + "']"); + _.each(fields, function (field) { + var $field = $( + qweb.render("bi_view_editor.ModelListFieldItem", { + name: field.name, + description: field.description, + }) + ) + .data("field", field) + .click(function () { + self.fieldClicked($(this)); + }) + .draggable({ + revert: "invalid", + scroll: false, + helper: "clone", + appendTo: "body", + containment: "window", + }); + $model_item.after($field); + }); + }, + modelClicked: function ($el) { + if (this.mode === "readonly") { + return; + } + var model = $el.data("model"); + $el.parent().find(".field").remove(); + if (this.isActive(model.id)) { + this.removeAsActive(model.id); + } else { + this.addAsActive(model.id); + this.loadFields(model.id).then( + function (fields) { + this.populateFields(fields, model.id); + }.bind(this) + ); + } + }, + fieldClicked: function ($el) { + if (this.mode === "readonly") { + return; + } + this.trigger("field_clicked", $el.data("field")); + }, + filterChanged: function (e) { + var $input = $(e.target); + this.filter($input.val()); + }, + filter: function (value) { + this.active_models = []; + this.$el.find(".field").remove(); + var val = + typeof value === "undefined" + ? this.current_filter + : value.toLowerCase(); + this.$el.find(".class").each(function () { + var data = $(this).data("model"); + if ( + data.name.toLowerCase().indexOf(val) === -1 && + data.model.toLowerCase().indexOf(val) === -1 + ) { + $(this).addClass("d-none"); + } else { + $(this).removeClass("d-none"); + } + }); + this.current_filter = val; + }, + }); + + return ModelList; +}); diff --git a/bi_view_editor/static/src/js/bi_view_editor.js b/bi_view_editor/static/src/js/bi_view_editor.js new file mode 100644 index 000000000..771855538 --- /dev/null +++ b/bi_view_editor/static/src/js/bi_view_editor.js @@ -0,0 +1,163 @@ +/* Copyright 2015-2019 Onestein () + * License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ + +odoo.define("bi_view_editor", function (require) { + "use strict"; + + var JoinNodeDialog = require("bi_view_editor.JoinNodeDialog"); + var ModelList = require("bi_view_editor.ModelList"); + var FieldList = require("bi_view_editor.FieldList").FieldList; + + var AbstractField = require("web.AbstractField"); + var Data = require("web.data"); + var field_registry = require("web.field_registry"); + + var BiViewEditor = AbstractField.extend({ + template: "bi_view_editor.Frame", + events: { + "click .clear-btn": "clear", + }, + start: function () { + var self = this; + var res = this._super.apply(this, arguments); + + // Init ModelList + this.model_list = new ModelList(this); + this.model_list.appendTo(this.$(".body > .left")); + this.model_list.on("field_clicked", this, function (field) { + self.addField(_.extend({}, field)); + }); + + // Init FieldList + this.field_list = new FieldList(this); + this.field_list.appendTo(this.$(".body > .right")).then( + function () { + this.field_list.on("removed", this, this.fieldListRemoved); + this.field_list.on("updated", this, this.fieldListChanged); + this.$el.find(".body > .right").droppable({ + accept: "div.class-list div.field", + drop: function (event, ui) { + self.addField(_.extend({}, ui.draggable.data("field"))); + ui.draggable.draggable("option", "revert", false); + }, + }); + + this.on("change:effective_readonly", this, function () { + this.updateMode(); + }); + this.renderValue(); + this.loadAndPopulateModelList(); + this.updateMode(); + }.bind(this) + ); + + return res; + }, + clear: function () { + if (this.mode !== "readonly") { + this.field_list.set([]); + this.loadAndPopulateModelList(); + this._setValue(this.field_list.get()); + } + }, + fieldListChanged: function () { + this._setValue(this.field_list.get()); + }, + fieldListRemoved: function () { + this._setValue(this.field_list.get()); + var model = new Data.DataSet(this, "bve.view"); + model.call("get_clean_list", [this.lastSetValue]).then( + function (result) { + this.field_list.set(JSON.parse(result)); + this._setValue(this.field_list.get()); + }.bind(this) + ); + this.loadAndPopulateModelList(); + }, + renderValue: function () { + this.field_list.set(JSON.parse(this.value)); + }, + updateMode: function () { + if (this.mode === "readonly") { + this.$el.find(".clear-btn").addClass("d-none"); + this.$el.find(".body .right").droppable("option", "disabled", true); + } else { + this.$el.find(".clear-btn").removeClass("d-none"); + this.$el.find(".body .right").droppable("option", "disabled", false); + } + this.field_list.setMode(this.mode); + this.model_list.setMode(this.mode); + }, + loadAndPopulateModelList: function () { + var model_ids = null; + if (this.field_list.get().length > 0) { + model_ids = this.field_list.getModelIds(); + } + this.model_list.loadModels(model_ids).then( + function (models) { + this.model_list.populateModels(models); + }.bind(this) + ); + }, + getTableAlias: function (field) { + if (typeof field.table_alias === "undefined") { + var model_ids = this.field_list.getModelIds(); + var n = 1; + while (typeof model_ids["t" + n] !== "undefined") { + n++; + } + return "t" + n; + } + return field.table_alias; + }, + addFieldAndJoinNode: function (field, join_node) { + if (join_node.join_node === -1 || join_node.table_alias === -1) { + field.table_alias = this.getTableAlias(field); + if (join_node.join_node === -1) { + join_node.join_node = field.table_alias; + } else { + join_node.table_alias = field.table_alias; + } + this.field_list.add(join_node); + } else { + field.table_alias = join_node.table_alias; + } + + this.field_list.add(field); + this.loadAndPopulateModelList(); + this._setValue(this.field_list.get()); + }, + addField: function (field) { + var data = _.extend({}, field); + var model = new Data.DataSet(this, "ir.model"); + var field_data = this.field_list.get(); + model.call("get_join_nodes", [field_data, data]).then( + function (result) { + if (result.length === 1) { + this.addFieldAndJoinNode(data, result[0]); + } else if (result.length > 1) { + var dialog = new JoinNodeDialog( + this, + {}, + result, + this.field_list.getModelData() + ); + dialog.open().on("chosen", this, function (e) { + this.addFieldAndJoinNode(data, e.choice); + }); + } else { + data.table_alias = this.getTableAlias(data); + this.field_list.add(data); + this.loadAndPopulateModelList(); + this._setValue(this.field_list.get()); + } + }.bind(this) + ); + }, + _parseValue: function (value) { + return JSON.stringify(value); + }, + }); + + field_registry.add("BVEEditor", BiViewEditor); +}); diff --git a/bi_view_editor/static/src/xml/bi_view_editor.xml b/bi_view_editor/static/src/xml/bi_view_editor.xml new file mode 100644 index 000000000..569d834e6 --- /dev/null +++ b/bi_view_editor/static/src/xml/bi_view_editor.xml @@ -0,0 +1,261 @@ + + diff --git a/bi_view_editor/templates/assets_template.xml b/bi_view_editor/templates/assets_template.xml new file mode 100644 index 000000000..e97b656d9 --- /dev/null +++ b/bi_view_editor/templates/assets_template.xml @@ -0,0 +1,28 @@ + + + + diff --git a/report_qweb_encrypt/README.rst b/report_qweb_encrypt/README.rst new file mode 100644 index 000000000..ab406389f --- /dev/null +++ b/report_qweb_encrypt/README.rst @@ -0,0 +1,92 @@ +=================== +Report Qweb Encrypt +=================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github + :target: https://github.com/OCA/reporting-engine/tree/14.0/report_qweb_encrypt + :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-14-0/reporting-engine-14-0-report_qweb_encrypt + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/143/14.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allow you to encrypt PDF with a password seting option, + +* Manually keyin password (only applicable for record print action) +* Auto generated password based on object data (python) + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +To make a report encryptable mark the field `Encryption` in the report record. + +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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Creu Blanca +* Ecosoft + +Contributors +~~~~~~~~~~~~ + +* Enric Tobella +* Jaime Arroyo +* Kitti U. + +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-kittiu| image:: https://github.com/kittiu.png?size=40px + :target: https://github.com/kittiu + :alt: kittiu + +Current `maintainer `__: + +|maintainer-kittiu| + +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/report_qweb_encrypt/__init__.py b/report_qweb_encrypt/__init__.py new file mode 100644 index 000000000..91c5580fe --- /dev/null +++ b/report_qweb_encrypt/__init__.py @@ -0,0 +1,2 @@ +from . import controllers +from . import models diff --git a/report_qweb_encrypt/__manifest__.py b/report_qweb_encrypt/__manifest__.py new file mode 100644 index 000000000..299b595b1 --- /dev/null +++ b/report_qweb_encrypt/__manifest__.py @@ -0,0 +1,18 @@ +# Copyright 2020 Creu Blanca +# Copyright 2020 Ecosoft Co., Ltd. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Report Qweb Encrypt", + "summary": "Allow to encrypt qweb pdfs", + "version": "14.0.1.0.0", + "license": "AGPL-3", + "author": "Creu Blanca,Ecosoft,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/reporting-engine", + "depends": [ + "web", + ], + "data": ["views/ir_actions_report.xml", "templates/assets.xml"], + "installable": True, + "maintainers": ["kittiu"], +} diff --git a/report_qweb_encrypt/controllers/__init__.py b/report_qweb_encrypt/controllers/__init__.py new file mode 100644 index 000000000..12a7e529b --- /dev/null +++ b/report_qweb_encrypt/controllers/__init__.py @@ -0,0 +1 @@ +from . import main diff --git a/report_qweb_encrypt/controllers/main.py b/report_qweb_encrypt/controllers/main.py new file mode 100644 index 000000000..015468354 --- /dev/null +++ b/report_qweb_encrypt/controllers/main.py @@ -0,0 +1,37 @@ +# Copyright 2020 Creu Blanca +# Copyright 2020 Ecosoft Co., Ltd. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +import json + +from werkzeug.urls import url_decode + +from odoo.http import request, route + +from odoo.addons.web.controllers import main as report + + +class ReportController(report.ReportController): + @route() + def report_download(self, data, token): + result = super().report_download(data, token) + # When report is downloaded from print action, this function is called, + # but this function cannot pass context (manually entered password) to + # report.render_qweb_pdf(), encrypton for manual password is done here. + requestcontent = json.loads(data) + url, ttype = requestcontent[0], requestcontent[1] + if ( + ttype in ["qweb-pdf"] + and result.headers["Content-Type"] == "application/pdf" + and "?" in url + ): + url_data = dict(url_decode(url.split("?")[1]).items()) + if "context" in url_data: + context = json.loads(url_data["context"]) + if "encrypt_password" in context: + Report = request.env["ir.actions.report"] + data = result.get_data() + encrypted_data = Report._encrypt_pdf( + data, context["encrypt_password"] + ) + result.set_data(encrypted_data) + return result diff --git a/report_qweb_encrypt/i18n/es.po b/report_qweb_encrypt/i18n/es.po new file mode 100644 index 000000000..054179902 --- /dev/null +++ b/report_qweb_encrypt/i18n/es.po @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_encrypt +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\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" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,help:report_qweb_encrypt.field_ir_actions_report__encrypt +msgid "" +"* Manual Input Password: allow user to key in password on the fly. This option available only on document print action.\n" +"* Auto Generated Password: system will auto encrypt password when PDF created, based on provided python syntax." +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields.selection,name:report_qweb_encrypt.selection__ir_actions_report__encrypt__auto +msgid "Auto Generated Password" +msgstr "" + +#. module: report_qweb_encrypt +#. openerp-web +#: code:addons/report_qweb_encrypt/static/src/js/report/action_manager_report.js:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,field_description:report_qweb_encrypt.field_ir_actions_report__display_name +msgid "Display Name" +msgstr "" + +#. module: report_qweb_encrypt +#. openerp-web +#: code:addons/report_qweb_encrypt/static/src/js/report/action_manager_report.js:0 +#, python-format +msgid "Encrypt" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,field_description:report_qweb_encrypt.field_ir_actions_report__encrypt_password +msgid "Encrypt Password" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,field_description:report_qweb_encrypt.field_ir_actions_report__encrypt +msgid "Encryption" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,field_description:report_qweb_encrypt.field_ir_actions_report__id +msgid "ID" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,field_description:report_qweb_encrypt.field_ir_actions_report____last_update +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields.selection,name:report_qweb_encrypt.selection__ir_actions_report__encrypt__manual +msgid "Manual Input Password" +msgstr "" + +#. module: report_qweb_encrypt +#. openerp-web +#: code:addons/report_qweb_encrypt/static/src/js/report/action_manager_report.js:0 +#, python-format +msgid "Ok" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,help:report_qweb_encrypt.field_ir_actions_report__encrypt_password +msgid "Python code syntax to gnerate password." +msgstr "" + +#. module: report_qweb_encrypt +#: code:addons/report_qweb_encrypt/models/ir_actions_report.py:0 +#, python-format +msgid "" +"Python code used for encryption password is invalid.\n" +"%s" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model,name:report_qweb_encrypt.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_qweb_encrypt +#: model_terms:ir.ui.view,arch_db:report_qweb_encrypt.ir_actions_report_form_view +msgid "python syntax, i.e., (object.default_code or 'secretcode')" +msgstr "" diff --git a/report_qweb_encrypt/i18n/report_qweb_encrypt.pot b/report_qweb_encrypt/i18n/report_qweb_encrypt.pot new file mode 100644 index 000000000..89605ef63 --- /dev/null +++ b/report_qweb_encrypt/i18n/report_qweb_encrypt.pot @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_encrypt +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,help:report_qweb_encrypt.field_ir_actions_report__encrypt +msgid "" +"* Manual Input Password: allow user to key in password on the fly. This option available only on document print action.\n" +"* Auto Generated Password: system will auto encrypt password when PDF created, based on provided python syntax." +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields.selection,name:report_qweb_encrypt.selection__ir_actions_report__encrypt__auto +msgid "Auto Generated Password" +msgstr "" + +#. module: report_qweb_encrypt +#. openerp-web +#: code:addons/report_qweb_encrypt/static/src/js/report/action_manager_report.js:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,field_description:report_qweb_encrypt.field_ir_actions_report__display_name +msgid "Display Name" +msgstr "" + +#. module: report_qweb_encrypt +#. openerp-web +#: code:addons/report_qweb_encrypt/static/src/js/report/action_manager_report.js:0 +#, python-format +msgid "Encrypt" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,field_description:report_qweb_encrypt.field_ir_actions_report__encrypt_password +msgid "Encrypt Password" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,field_description:report_qweb_encrypt.field_ir_actions_report__encrypt +msgid "Encryption" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,field_description:report_qweb_encrypt.field_ir_actions_report__id +msgid "ID" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,field_description:report_qweb_encrypt.field_ir_actions_report____last_update +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields.selection,name:report_qweb_encrypt.selection__ir_actions_report__encrypt__manual +msgid "Manual Input Password" +msgstr "" + +#. module: report_qweb_encrypt +#. openerp-web +#: code:addons/report_qweb_encrypt/static/src/js/report/action_manager_report.js:0 +#, python-format +msgid "Ok" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model.fields,help:report_qweb_encrypt.field_ir_actions_report__encrypt_password +msgid "Python code syntax to gnerate password." +msgstr "" + +#. module: report_qweb_encrypt +#: code:addons/report_qweb_encrypt/models/ir_actions_report.py:0 +#, python-format +msgid "" +"Python code used for encryption password is invalid.\n" +"%s" +msgstr "" + +#. module: report_qweb_encrypt +#: model:ir.model,name:report_qweb_encrypt.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_qweb_encrypt +#: model_terms:ir.ui.view,arch_db:report_qweb_encrypt.ir_actions_report_form_view +msgid "python syntax, i.e., (object.default_code or 'secretcode')" +msgstr "" diff --git a/report_qweb_encrypt/models/__init__.py b/report_qweb_encrypt/models/__init__.py new file mode 100644 index 000000000..a248cf216 --- /dev/null +++ b/report_qweb_encrypt/models/__init__.py @@ -0,0 +1 @@ +from . import ir_actions_report diff --git a/report_qweb_encrypt/models/ir_actions_report.py b/report_qweb_encrypt/models/ir_actions_report.py new file mode 100644 index 000000000..c4a00dd17 --- /dev/null +++ b/report_qweb_encrypt/models/ir_actions_report.py @@ -0,0 +1,74 @@ +# Copyright 2020 Creu Blanca +# Copyright 2020 Ecosoft Co., Ltd. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +import logging +from io import BytesIO + +from odoo import _, fields, models +from odoo.exceptions import ValidationError +from odoo.tools.safe_eval import safe_eval + +_logger = logging.getLogger(__name__) +try: + from PyPDF2 import PdfFileReader, PdfFileWriter +except ImportError as err: + _logger.debug(err) + + +class IrActionsReport(models.Model): + _inherit = "ir.actions.report" + + encrypt = fields.Selection( + [("manual", "Manual Input Password"), ("auto", "Auto Generated Password")], + string="Encryption", + help="* Manual Input Password: allow user to key in password on the fly. " + "This option available only on document print action.\n" + "* Auto Generated Password: system will auto encrypt password when PDF " + "created, based on provided python syntax.", + ) + encrypt_password = fields.Char( + help="Python code syntax to gnerate password.", + ) + + def _render_qweb_pdf(self, res_ids=None, data=None): + document, ttype = super(IrActionsReport, self)._render_qweb_pdf( + res_ids=res_ids, data=data + ) + password = self._get_pdf_password(res_ids[:1]) + document = self._encrypt_pdf(document, password) + return document, ttype + + def _get_pdf_password(self, res_id): + encrypt_password = False + if self.encrypt == "manual": + # If use document print action, report_download() is called, + # but that can't pass context (encrypt_password) here. + # As such, file will be encrypted by report_download() again. + # -- + # Following is used just in case when context is passed in. + encrypt_password = self._context.get("encrypt_password", False) + elif self.encrypt == "auto" and self.encrypt_password: + obj = self.env[self.model].browse(res_id) + try: + encrypt_password = safe_eval(self.encrypt_password, {"object": obj}) + except Exception: + raise ValidationError( + _("Python code used for encryption password is invalid.\n%s") + % self.encrypt_password + ) + return encrypt_password + + def _encrypt_pdf(self, data, password): + if not password: + return data + output_pdf = PdfFileWriter() + in_buff = BytesIO(data) + pdf = PdfFileReader(in_buff) + output_pdf.appendPagesFromReader(pdf) + output_pdf.encrypt(password) + buff = BytesIO() + output_pdf.write(buff) + return buff.getvalue() + + def _get_readable_fields(self): + return super()._get_readable_fields() | {"encrypt"} diff --git a/report_qweb_encrypt/readme/CONTRIBUTORS.rst b/report_qweb_encrypt/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..b7e5dfa74 --- /dev/null +++ b/report_qweb_encrypt/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* Enric Tobella +* Jaime Arroyo +* Kitti U. diff --git a/report_qweb_encrypt/readme/DESCRIPTION.rst b/report_qweb_encrypt/readme/DESCRIPTION.rst new file mode 100644 index 000000000..2f31e4e9d --- /dev/null +++ b/report_qweb_encrypt/readme/DESCRIPTION.rst @@ -0,0 +1,4 @@ +This module allow you to encrypt PDF with a password seting option, + +* Manually keyin password (only applicable for record print action) +* Auto generated password based on object data (python) diff --git a/report_qweb_encrypt/readme/USAGE.rst b/report_qweb_encrypt/readme/USAGE.rst new file mode 100644 index 000000000..1704c7968 --- /dev/null +++ b/report_qweb_encrypt/readme/USAGE.rst @@ -0,0 +1 @@ +To make a report encryptable mark the field `Encryption` in the report record. diff --git a/report_qweb_encrypt/static/description/icon.png b/report_qweb_encrypt/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/report_qweb_encrypt/static/description/icon.png differ diff --git a/report_qweb_encrypt/static/description/index.html b/report_qweb_encrypt/static/description/index.html new file mode 100644 index 000000000..a20f84511 --- /dev/null +++ b/report_qweb_encrypt/static/description/index.html @@ -0,0 +1,433 @@ + + + + + + +Report Qweb Encrypt + + + +
+

Report Qweb Encrypt

+ + +

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

+

This module allow you to encrypt PDF with a password seting option,

+
    +
  • Manually keyin password (only applicable for record print action)
  • +
  • Auto generated password based on object data (python)
  • +
+

Table of contents

+ +
+

Usage

+

To make a report encryptable mark the field Encryption in the report record.

+
+
+

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 smashing it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Creu Blanca
  • +
  • Ecosoft
  • +
+
+
+

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:

+

kittiu

+

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/report_qweb_encrypt/static/src/js/report/action_manager_report.js b/report_qweb_encrypt/static/src/js/report/action_manager_report.js new file mode 100644 index 000000000..376954861 --- /dev/null +++ b/report_qweb_encrypt/static/src/js/report/action_manager_report.js @@ -0,0 +1,96 @@ +// © 2017 Creu Blanca +// License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). +odoo.define("report_qweb_encrypt.Dialog", function (require) { + "use strict"; + + var ActionManager = require("web.ActionManager"); + var Dialog = require("web.Dialog"); + var core = require("web.core"); + + var _t = core._t; + + var EncryptDialog = Dialog.extend({ + events: _.extend({}, Dialog.prototype.events, { + change: "_onChange", + }), + _setValue: function () { + this.value = this.$el.find(".o_password").val(); + }, + _onChange: function () { + this._setValue(); + }, + }); + EncryptDialog.askPassword = function (owner, action, action_options, options) { + var buttons = [ + { + text: _t("Ok"), + classes: "btn-primary", + close: true, + click: function () { + var password = this.value || false; + owner._executeReportAction(action, action_options, password); + }, + }, + { + text: _t("Cancel"), + close: true, + click: false, + }, + ]; + return new EncryptDialog( + owner, + _.extend( + { + size: "small", + buttons: buttons, + $content: $( + '
' + ), + title: _t("Encrypt"), + }, + options + ) + ).open(); + }; + + ActionManager.include({ + _executeReportAction: function (action, options, password) { + if ( + action.encrypt === "manual" && + action.report_type === "qweb-pdf" && + password === undefined + ) { + EncryptDialog.askPassword(this, action, options); + return $.Deferred(); + } else if (action.encrypt === "manual") { + action.context = _.extend({}, action.context, { + encrypt_password: password, + }); + } + return this._super(action, options, password); + }, + _makeReportUrls: function (action) { + var reportUrls = this._super.apply(this, arguments); + if (action.encrypt === "manual" && action.context.encrypt_password) { + if ( + _.isUndefined(action.data) || + _.isNull(action.data) || + (_.isObject(action.data) && _.isEmpty(action.data)) + ) { + var serializedOptionsPath = + "?context=" + + encodeURIComponent( + JSON.stringify({ + encrypt_password: action.context.encrypt_password, + }) + ); + reportUrls = _.mapObject(reportUrls, function (value) { + value += serializedOptionsPath; + return value; + }); + } + } + return reportUrls; + }, + }); +}); diff --git a/report_qweb_encrypt/templates/assets.xml b/report_qweb_encrypt/templates/assets.xml new file mode 100644 index 000000000..e313587f3 --- /dev/null +++ b/report_qweb_encrypt/templates/assets.xml @@ -0,0 +1,16 @@ + + + +