commit f5d6598cb8c3cb35095afbe3677b061508bb5e13 Author: Flectra Community Bot Date: Tue Mar 23 20:37:36 2021 +0100 Automatic Update form OCA2FC Migrator diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..2d6b63f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,562 @@ +image: ubuntu:xenial + +stages: + - testall + - testsingle + +variables: + POSTGRES_DB: postgres + POSTGRES_USER: flectra + POSTGRES_PASSWORD: flectra + POSTGRES_HOST: postgres + POSTGRES_PORT: "5432" + +services: + - name: postgres:10-alpine + alias: psql + + +test_all_modules: + stage: testall + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:1-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt-get install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_all + - psql -h psql -U flectra -d test_all -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_all + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_all + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_all + --test-enable + --init report_qr,report_context,bi_view_editor,bi_sql_editor_aggregate,report_xlsx,bi_sql_editor,report_fillpdf,report_qweb_parameter,report_wkhtmltopdf_param,report_xlsx_helper,report_csv,report_xlsx_helper_demo,report_xml,report_qweb_txt,report_qweb_pdf_watermark + --stop-after-init + --log-level error + --log-handler flectra.addons.report_qr:TEST + --log-handler flectra.addons.report_context:TEST + --log-handler flectra.addons.bi_view_editor:TEST + --log-handler flectra.addons.bi_sql_editor_aggregate:TEST + --log-handler flectra.addons.report_xlsx:TEST + --log-handler flectra.addons.bi_sql_editor:TEST + --log-handler flectra.addons.report_fillpdf:TEST + --log-handler flectra.addons.report_qweb_parameter:TEST + --log-handler flectra.addons.report_wkhtmltopdf_param:TEST + --log-handler flectra.addons.report_xlsx_helper:TEST + --log-handler flectra.addons.report_csv:TEST + --log-handler flectra.addons.report_xlsx_helper_demo:TEST + --log-handler flectra.addons.report_xml:TEST + --log-handler flectra.addons.report_qweb_txt:TEST + --log-handler flectra.addons.report_qweb_pdf_watermark:TEST + " + + +test_module_report_qr: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_qr + - psql -h psql -U flectra -d test_report_qr -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_qr + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_qr + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_qr + --test-enable -i report_qr + --stop-after-init + --log-level error + --log-handler flectra.addons.report_qr:TEST" + +test_module_report_context: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_context + - psql -h psql -U flectra -d test_report_context -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_context + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_context + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_context + --test-enable -i report_context + --stop-after-init + --log-level error + --log-handler flectra.addons.report_context:TEST" + +test_module_bi_view_editor: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_bi_view_editor + - psql -h psql -U flectra -d test_bi_view_editor -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_bi_view_editor + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_bi_view_editor + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_bi_view_editor + --test-enable -i bi_view_editor + --stop-after-init + --log-level error + --log-handler flectra.addons.bi_view_editor:TEST" + +test_module_bi_sql_editor_aggregate: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_bi_sql_editor_aggregate + - psql -h psql -U flectra -d test_bi_sql_editor_aggregate -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_bi_sql_editor_aggregate + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_bi_sql_editor_aggregate + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_bi_sql_editor_aggregate + --test-enable -i bi_sql_editor_aggregate + --stop-after-init + --log-level error + --log-handler flectra.addons.bi_sql_editor_aggregate:TEST" + +test_module_report_xlsx: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_xlsx + - psql -h psql -U flectra -d test_report_xlsx -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_xlsx + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_xlsx + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_xlsx + --test-enable -i report_xlsx + --stop-after-init + --log-level error + --log-handler flectra.addons.report_xlsx:TEST" + +test_module_bi_sql_editor: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_bi_sql_editor + - psql -h psql -U flectra -d test_bi_sql_editor -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_bi_sql_editor + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_bi_sql_editor + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_bi_sql_editor + --test-enable -i bi_sql_editor + --stop-after-init + --log-level error + --log-handler flectra.addons.bi_sql_editor:TEST" + +test_module_report_fillpdf: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_fillpdf + - psql -h psql -U flectra -d test_report_fillpdf -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_fillpdf + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_fillpdf + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_fillpdf + --test-enable -i report_fillpdf + --stop-after-init + --log-level error + --log-handler flectra.addons.report_fillpdf:TEST" + +test_module_report_qweb_parameter: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_qweb_parameter + - psql -h psql -U flectra -d test_report_qweb_parameter -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_qweb_parameter + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_qweb_parameter + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_qweb_parameter + --test-enable -i report_qweb_parameter + --stop-after-init + --log-level error + --log-handler flectra.addons.report_qweb_parameter:TEST" + +test_module_report_wkhtmltopdf_param: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_wkhtmltopdf_param + - psql -h psql -U flectra -d test_report_wkhtmltopdf_param -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_wkhtmltopdf_param + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_wkhtmltopdf_param + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_wkhtmltopdf_param + --test-enable -i report_wkhtmltopdf_param + --stop-after-init + --log-level error + --log-handler flectra.addons.report_wkhtmltopdf_param:TEST" + +test_module_report_xlsx_helper: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_xlsx_helper + - psql -h psql -U flectra -d test_report_xlsx_helper -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_xlsx_helper + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_xlsx_helper + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_xlsx_helper + --test-enable -i report_xlsx_helper + --stop-after-init + --log-level error + --log-handler flectra.addons.report_xlsx_helper:TEST" + +test_module_report_csv: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_csv + - psql -h psql -U flectra -d test_report_csv -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_csv + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_csv + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_csv + --test-enable -i report_csv + --stop-after-init + --log-level error + --log-handler flectra.addons.report_csv:TEST" + +test_module_report_xlsx_helper_demo: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_xlsx_helper_demo + - psql -h psql -U flectra -d test_report_xlsx_helper_demo -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_xlsx_helper_demo + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_xlsx_helper_demo + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_xlsx_helper_demo + --test-enable -i report_xlsx_helper_demo + --stop-after-init + --log-level error + --log-handler flectra.addons.report_xlsx_helper_demo:TEST" + +test_module_report_xml: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_xml + - psql -h psql -U flectra -d test_report_xml -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_xml + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_xml + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_xml + --test-enable -i report_xml + --stop-after-init + --log-level error + --log-handler flectra.addons.report_xml:TEST" + +test_module_report_qweb_txt: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_qweb_txt + - psql -h psql -U flectra -d test_report_qweb_txt -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_qweb_txt + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_qweb_txt + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_qweb_txt + --test-enable -i report_qweb_txt + --stop-after-init + --log-level error + --log-handler flectra.addons.report_qweb_txt:TEST" + +test_module_report_qweb_pdf_watermark: + stage: testsingle + when: on_failure + image: + name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest + entrypoint: ["/bin/sh", "-c"] + script: + - apt-get install -y p7zip-full + - apt install -y expect-dev python-lxml pdftk wkhtmltopdf + - pip3 install -r ${CI_PROJECT_DIR}/requirements.txt + - su - flectra -c "mkdir ~/others" + - sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8 + - mkdir ${CI_PROJECT_DIR}/ci_data + - wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip + - 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip + - export PGPASSWORD="flectra" + - createdb -h psql -U flectra -O flectra -T template1 test_report_qweb_pdf_watermark + - psql -h psql -U flectra -d test_report_qweb_pdf_watermark -f ${CI_PROJECT_DIR}/ci_data/dump.sql + - su - flectra -c "mkdir -p ~/.local/share/filestore" + - mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_report_qweb_pdf_watermark + - chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_report_qweb_pdf_watermark + - su - flectra -c "/opt/flectra/flectra-bin + --addons-path ${CI_PROJECT_DIR} + --db_host psql + --db_port 5432 + --db_user flectra + --db_password flectra + --database test_report_qweb_pdf_watermark + --test-enable -i report_qweb_pdf_watermark + --stop-after-init + --log-level error + --log-handler flectra.addons.report_qweb_pdf_watermark:TEST" + diff --git a/.gitlab/issue_templates/Bug.md b/.gitlab/issue_templates/Bug.md new file mode 100644 index 0000000..efa3093 --- /dev/null +++ b/.gitlab/issue_templates/Bug.md @@ -0,0 +1,32 @@ +**Summary** + +(Summarize the bug encountered concisely) + + +**Steps to reproduce** + +(How one can reproduce the issue - this is very important) + + +**What is the current bug behavior?** + +(What actually happens) + + +**What is the expected correct behavior?** + +(What you should see instead) + + +**Relevant logs and/or screenshots** + +(Paste any relevant logs - please use code blocks (```) to format console output, +logs, and code as it's very hard to read otherwise.) + + +**Possible fixes** + +(If you can, link to the line of code that might be responsible for the problem) + +/label ~bug + diff --git a/README.md b/README.md new file mode 100644 index 0000000..88f7195 --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +# Flectra Community / Flectra 2.0 / reporting-engine + +None + + + +Available addons +---------------- + +addon | version | summary +--- | --- | --- +[report_qr](report_qr/) | 2.0.1.0.0| Web QR Manager +[report_context](report_context/) | 2.0.1.0.0| Adding context to reports +[bi_view_editor](bi_view_editor/) | 2.0.1.0.0| Graphical BI views builder for Odoo +[bi_sql_editor_aggregate](bi_sql_editor_aggregate/) | 2.0.1.0.0| BI SQL Editor Aggregation +[report_xlsx](report_xlsx/) | 2.0.1.0.6| Base module to create xlsx report +[bi_sql_editor](bi_sql_editor/) | 2.0.1.0.0| BI Views builder, based on Materialized or Normal SQL Views +[report_fillpdf](report_fillpdf/) | 2.0.1.0.1| Base module that fills PDFs +[report_qweb_parameter](report_qweb_parameter/) | 2.0.1.0.0| Add new parameters for qweb templates in order to reduce field length and check minimal length +[report_wkhtmltopdf_param](report_wkhtmltopdf_param/) | 2.0.1.0.1| Add new parameters for a paper format to be used by wkhtmltopdf command as arguments. +[report_xlsx_helper](report_xlsx_helper/) | 2.0.1.0.0| Report xlsx helpers +[report_csv](report_csv/) | 2.0.1.0.0| Base module to create csv report +[report_xlsx_helper_demo](report_xlsx_helper_demo/) | 2.0.1.0.0| Report xlsx helpers - demo +[report_xml](report_xml/) | 2.0.1.0.2| Allow to generate XML reports +[report_qweb_txt](report_qweb_txt/) | 2.0.1.0.0| Use Qweb to generate text and CSV reports +[report_qweb_pdf_watermark](report_qweb_pdf_watermark/) | 2.0.1.0.0| Add watermarks to your QWEB PDF reports + + diff --git a/base_comment_template/COPYRIGHT b/base_comment_template/COPYRIGHT new file mode 100644 index 0000000..d3ff948 --- /dev/null +++ b/base_comment_template/COPYRIGHT @@ -0,0 +1,16 @@ +Most of the files are + + :Copyright: This stylesheet has been placed in the public domain. + Copyright 2013-2014 Nicolas Bessi (Camptocamp SA) + Copyright 2014 Guewen Baconnier (Camptocamp SA) + Copyright 2018 Flectra Community + +Many files also contain contributions from third +parties. In this case the original copyright of +the contributions can be traced through the +history of the source version control system. + +When that is not the case, the files contain a prominent +notice stating the original copyright and applicable +license, or come with their own dedicated COPYRIGHT +and/or LICENSE file. \ No newline at end of file diff --git a/base_comment_template/LICENSE b/base_comment_template/LICENSE new file mode 100644 index 0000000..3939cd9 --- /dev/null +++ b/base_comment_template/LICENSE @@ -0,0 +1,663 @@ +For copyright information, please see the COPYRIGHT file. + +GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. \ No newline at end of file diff --git a/base_comment_template/README.rst b/base_comment_template/README.rst new file mode 100644 index 0000000..8c4f3e4 --- /dev/null +++ b/base_comment_template/README.rst @@ -0,0 +1,97 @@ +======================= +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 model to define templates of comments to print on +documents. + +Two positions are available for the comments: +* above document lines +* below document lines + +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: + +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 + +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. \ No newline at end of file diff --git a/base_comment_template/__init__.py b/base_comment_template/__init__.py new file mode 100644 index 0000000..83e553a --- /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 0000000..307b4c1 --- /dev/null +++ b/base_comment_template/__manifest__.py @@ -0,0 +1,20 @@ +# © 2013-2014 Nicolas Bessi (Camptocamp SA) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "Base Comments Templates", + "summary": "Comments templates on documents", + "version": "2.0.1.0.0", + "category": "Sale", + "website": "https://gitlab.com/flectra-community/reporting-engine", + "author": "Camptocamp, Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "depends": ["base"], + "data": [ + "security/ir.model.access.csv", + "security/security.xml", + "views/comment_view.xml", + "views/res_partner.xml", + ], +} diff --git a/base_comment_template/i18n/am.po b/base_comment_template/i18n/am.po new file mode 100644 index 0000000..c9ae5e8 --- /dev/null +++ b/base_comment_template/i18n/am.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/ar.po b/base_comment_template/i18n/ar.po new file mode 100644 index 0000000..5f67c26 --- /dev/null +++ b/base_comment_template/i18n/ar.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "اسم العرض" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "المعرف" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +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 0000000..649f377 --- /dev/null +++ b/base_comment_template/i18n/base_comment_template.pot @@ -0,0 +1,126 @@ +# 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:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__after_lines +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields.selection,name:base_comment_template.selection__base_comment_template__position__before_lines +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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_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__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,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +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_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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/bg.po b/base_comment_template/i18n/bg.po new file mode 100644 index 0000000..a7f70d4 --- /dev/null +++ b/base_comment_template/i18n/bg.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/bs.po b/base_comment_template/i18n/bs.po new file mode 100644 index 0000000..2fb7177 --- /dev/null +++ b/base_comment_template/i18n/bs.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/ca.po b/base_comment_template/i18n/ca.po new file mode 100644 index 0000000..c4d38fe --- /dev/null +++ b/base_comment_template/i18n/ca.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Veure el nom" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/cs.po b/base_comment_template/i18n/cs.po new file mode 100644 index 0000000..337bac3 --- /dev/null +++ b/base_comment_template/i18n/cs.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/da.po b/base_comment_template/i18n/da.po new file mode 100644 index 0000000..7cb646e --- /dev/null +++ b/base_comment_template/i18n/da.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Vist navn" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "Id" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/de.po b/base_comment_template/i18n/de.po new file mode 100644 index 0000000..51214e2 --- /dev/null +++ b/base_comment_template/i18n/de.po @@ -0,0 +1,132 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "Suffix" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "Textbausteinvorlage" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "Präfix" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "Textbausteinvorlagen" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +msgstr "Textbaustein-Zusammenfassung" + +#. 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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "Textbausteinvorlage" + +#. 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 +msgid "Display Name" +msgstr "Anzeigename" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +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." + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "Bezeichnung" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "Position" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Position im Dokument" diff --git a/base_comment_template/i18n/el_GR.po b/base_comment_template/i18n/el_GR.po new file mode 100644 index 0000000..591bf54 --- /dev/null +++ b/base_comment_template/i18n/el_GR.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "Κωδικός" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/en_GB.po b/base_comment_template/i18n/en_GB.po new file mode 100644 index 0000000..ea1a96f --- /dev/null +++ b/base_comment_template/i18n/en_GB.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Display Name" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/es.po b/base_comment_template/i18n/es.po new file mode 100644 index 0000000..682c1f0 --- /dev/null +++ b/base_comment_template/i18n/es.po @@ -0,0 +1,129 @@ +# 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: 2018-01-05 01:40+0000\n" +"PO-Revision-Date: 2018-01-05 01:40+0000\n" +"Last-Translator: enjolras , 2018\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" + +#. 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "Después de las líneas" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "Plantilla de comentario base" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "Antes de las líneas" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "Plantillas de comentarios" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +msgstr "Índice de comentarios" + +#. 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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +msgid "Conditions template" +msgstr "Plantillas de comentarios" + +#. 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 el" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__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__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "Posició" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Posición en el documento" diff --git a/base_comment_template/i18n/es_AR.po b/base_comment_template/i18n/es_AR.po new file mode 100644 index 0000000..2d690c2 --- /dev/null +++ b/base_comment_template/i18n/es_AR.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/es_CL.po b/base_comment_template/i18n/es_CL.po new file mode 100644 index 0000000..a250357 --- /dev/null +++ b/base_comment_template/i18n/es_CL.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/es_CO.po b/base_comment_template/i18n/es_CO.po new file mode 100644 index 0000000..a5506ed --- /dev/null +++ b/base_comment_template/i18n/es_CO.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/es_CR.po b/base_comment_template/i18n/es_CR.po new file mode 100644 index 0000000..12e2381 --- /dev/null +++ b/base_comment_template/i18n/es_CR.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/es_DO.po b/base_comment_template/i18n/es_DO.po new file mode 100644 index 0000000..e0c5aff --- /dev/null +++ b/base_comment_template/i18n/es_DO.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/es_EC.po b/base_comment_template/i18n/es_EC.po new file mode 100644 index 0000000..4d6653e --- /dev/null +++ b/base_comment_template/i18n/es_EC.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/es_ES.po b/base_comment_template/i18n/es_ES.po new file mode 100644 index 0000000..67f4ef8 --- /dev/null +++ b/base_comment_template/i18n/es_ES.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/es_MX.po b/base_comment_template/i18n/es_MX.po new file mode 100644 index 0000000..27d174f --- /dev/null +++ b/base_comment_template/i18n/es_MX.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/es_PE.po b/base_comment_template/i18n/es_PE.po new file mode 100644 index 0000000..bf7d31e --- /dev/null +++ b/base_comment_template/i18n/es_PE.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/es_PY.po b/base_comment_template/i18n/es_PY.po new file mode 100644 index 0000000..4f7e8b3 --- /dev/null +++ b/base_comment_template/i18n/es_PY.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/es_VE.po b/base_comment_template/i18n/es_VE.po new file mode 100644 index 0000000..d048469 --- /dev/null +++ b/base_comment_template/i18n/es_VE.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/et.po b/base_comment_template/i18n/et.po new file mode 100644 index 0000000..67be74e --- /dev/null +++ b/base_comment_template/i18n/et.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/eu.po b/base_comment_template/i18n/eu.po new file mode 100644 index 0000000..938b035 --- /dev/null +++ b/base_comment_template/i18n/eu.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/fa.po b/base_comment_template/i18n/fa.po new file mode 100644 index 0000000..d848e15 --- /dev/null +++ b/base_comment_template/i18n/fa.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "شناسه" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/fi.po b/base_comment_template/i18n/fi.po new file mode 100644 index 0000000..b5ee455 --- /dev/null +++ b/base_comment_template/i18n/fi.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Nimi" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/fr.po b/base_comment_template/i18n/fr.po new file mode 100644 index 0000000..2d99f14 --- /dev/null +++ b/base_comment_template/i18n/fr.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "Après les lignes" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "Modèle de textes de commentaires" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "Avant les lignes" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "Modèles de commentaires" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +msgstr "Nom" + +#. 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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +msgid "Conditions template" +msgstr "Modèles de commentaires" + +#. 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 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "Position" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Position sur le document" diff --git a/base_comment_template/i18n/fr_CA.po b/base_comment_template/i18n/fr_CA.po new file mode 100644 index 0000000..9d095be --- /dev/null +++ b/base_comment_template/i18n/fr_CA.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "Identifiant" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/fr_CH.po b/base_comment_template/i18n/fr_CH.po new file mode 100644 index 0000000..95abe67 --- /dev/null +++ b/base_comment_template/i18n/fr_CH.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/gl.po b/base_comment_template/i18n/gl.po new file mode 100644 index 0000000..033703c --- /dev/null +++ b/base_comment_template/i18n/gl.po @@ -0,0 +1,130 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "Despois das liñas" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "Modelo do comentario base" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "Antes das liñas" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "Modelos de comentarios" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +msgstr "Índice de comentarios" + +#. 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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +msgid "Conditions template" +msgstr "Modelos de comentarios" + +#. 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 +msgid "Display Name" +msgstr "Nome mostrado" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "Posición" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Posición no documento" diff --git a/base_comment_template/i18n/gl_ES.po b/base_comment_template/i18n/gl_ES.po new file mode 100644 index 0000000..84059da --- /dev/null +++ b/base_comment_template/i18n/gl_ES.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/he.po b/base_comment_template/i18n/he.po new file mode 100644 index 0000000..a7be713 --- /dev/null +++ b/base_comment_template/i18n/he.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "מזהה" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/hr.po b/base_comment_template/i18n/hr.po new file mode 100644 index 0000000..c5123f2 --- /dev/null +++ b/base_comment_template/i18n/hr.po @@ -0,0 +1,131 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "Iza linija" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "Osnovni Predložak komentara" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "Ispred linija" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "Predlošci komentara" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +msgstr "Sažetak komentara" + +#. 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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "Predložak uvjeta" + +#. 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 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "Naziv" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "Pozicija" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Pozicija na dokumentu" diff --git a/base_comment_template/i18n/hr_HR.po b/base_comment_template/i18n/hr_HR.po new file mode 100644 index 0000000..48a6b06 --- /dev/null +++ b/base_comment_template/i18n/hr_HR.po @@ -0,0 +1,130 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Naziv" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/hu.po b/base_comment_template/i18n/hu.po new file mode 100644 index 0000000..8b4495a --- /dev/null +++ b/base_comment_template/i18n/hu.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +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__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/id.po b/base_comment_template/i18n/id.po new file mode 100644 index 0000000..eab8bcc --- /dev/null +++ b/base_comment_template/i18n/id.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/it.po b/base_comment_template/i18n/it.po new file mode 100644 index 0000000..2b70fac --- /dev/null +++ b/base_comment_template/i18n/it.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "Posizione" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/ja.po b/base_comment_template/i18n/ja.po new file mode 100644 index 0000000..cba75a8 --- /dev/null +++ b/base_comment_template/i18n/ja.po @@ -0,0 +1,130 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "明細行後" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "Base comment template" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "明細行前" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "コメント" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "コメントテンプレート" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "表示名" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "位置" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "ドキュメント上の位置" diff --git a/base_comment_template/i18n/ko.po b/base_comment_template/i18n/ko.po new file mode 100644 index 0000000..3a29fec --- /dev/null +++ b/base_comment_template/i18n/ko.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "표시 이름" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/lt.po b/base_comment_template/i18n/lt.po new file mode 100644 index 0000000..9e9a416 --- /dev/null +++ b/base_comment_template/i18n/lt.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/lt_LT.po b/base_comment_template/i18n/lt_LT.po new file mode 100644 index 0000000..522b866 --- /dev/null +++ b/base_comment_template/i18n/lt_LT.po @@ -0,0 +1,130 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/lv.po b/base_comment_template/i18n/lv.po new file mode 100644 index 0000000..fd52810 --- /dev/null +++ b/base_comment_template/i18n/lv.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/mk.po b/base_comment_template/i18n/mk.po new file mode 100644 index 0000000..8bcae00 --- /dev/null +++ b/base_comment_template/i18n/mk.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/mn.po b/base_comment_template/i18n/mn.po new file mode 100644 index 0000000..d55db78 --- /dev/null +++ b/base_comment_template/i18n/mn.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/nb.po b/base_comment_template/i18n/nb.po new file mode 100644 index 0000000..d7836ad --- /dev/null +++ b/base_comment_template/i18n/nb.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/nb_NO.po b/base_comment_template/i18n/nb_NO.po new file mode 100644 index 0000000..3510275 --- /dev/null +++ b/base_comment_template/i18n/nb_NO.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Vis navn" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/nl.po b/base_comment_template/i18n/nl.po new file mode 100644 index 0000000..9501cb1 --- /dev/null +++ b/base_comment_template/i18n/nl.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/nl_BE.po b/base_comment_template/i18n/nl_BE.po new file mode 100644 index 0000000..42a180e --- /dev/null +++ b/base_comment_template/i18n/nl_BE.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/nl_NL.po b/base_comment_template/i18n/nl_NL.po new file mode 100644 index 0000000..9a940ee --- /dev/null +++ b/base_comment_template/i18n/nl_NL.po @@ -0,0 +1,130 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/pl.po b/base_comment_template/i18n/pl.po new file mode 100644 index 0000000..4fa0440 --- /dev/null +++ b/base_comment_template/i18n/pl.po @@ -0,0 +1,130 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/pt.po b/base_comment_template/i18n/pt.po new file mode 100644 index 0000000..2562fd0 --- /dev/null +++ b/base_comment_template/i18n/pt.po @@ -0,0 +1,129 @@ +# 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-02-29 20:13+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 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "Após as linhas" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "Modelo de Comentários Base" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "Antes das Linhas" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "Modelos de Comentários" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +msgstr "Resumo de comentário" + +#. 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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "Modelos de condições" + +#. 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 +msgid "Display Name" +msgstr "Nome" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "Se assinalado, só estará disponível para esta empresa" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "Nome" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "Posição" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Posição no documento" diff --git a/base_comment_template/i18n/pt_BR.po b/base_comment_template/i18n/pt_BR.po new file mode 100644 index 0000000..603e21c --- /dev/null +++ b/base_comment_template/i18n/pt_BR.po @@ -0,0 +1,130 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "Depois das linhas" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "Modelo de comentário Base" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "Antes das linhas" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "Modelos de comentários" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +msgstr "Índice 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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "Modelos de condições" + +#. 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 +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "Se definido, ele estará disponível apenas para esta empresa" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "Nome" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "Posição" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Posição no documento" diff --git a/base_comment_template/i18n/pt_PT.po b/base_comment_template/i18n/pt_PT.po new file mode 100644 index 0000000..1e12aa0 --- /dev/null +++ b/base_comment_template/i18n/pt_PT.po @@ -0,0 +1,130 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "Após as linhas" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "Modelo de comentários base" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "Antes das linhas" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "Modelos de Comentários" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +msgstr "Resumo 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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "Modelo de condições" + +#. 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 +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "Se assinalado, será apenas visível para esta empresa" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "Nome" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "Posição" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Posição no documento" diff --git a/base_comment_template/i18n/ro.po b/base_comment_template/i18n/ro.po new file mode 100644 index 0000000..fdd5570 --- /dev/null +++ b/base_comment_template/i18n/ro.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/ru.po b/base_comment_template/i18n/ru.po new file mode 100644 index 0000000..5948518 --- /dev/null +++ b/base_comment_template/i18n/ru.po @@ -0,0 +1,130 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/sk.po b/base_comment_template/i18n/sk.po new file mode 100644 index 0000000..b92d3f3 --- /dev/null +++ b/base_comment_template/i18n/sk.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "Za položkami" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "Základná šablóna komentárov" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "Pred položkami" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "Šablóny komentárov" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +msgstr "Názov" + +#. 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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +msgstr "Predvolená šablóna" + +#. 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 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +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ť" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "Názov" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "Pozícia" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Pozícia v dokumente" diff --git a/base_comment_template/i18n/sl.po b/base_comment_template/i18n/sl.po new file mode 100644 index 0000000..e71dbb3 --- /dev/null +++ b/base_comment_template/i18n/sl.po @@ -0,0 +1,131 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "Po postavkah" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "Osnovna predloga za komentarje" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "Pred postavkami" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: 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.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "Predloge komentarjev" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +msgstr "Povzetek komentarjev" + +#. 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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +#, fuzzy +msgid "Conditions template" +msgstr "Predloge komentarjev" + +#. 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 +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "Položaj" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "Pozicija na dokumentu" diff --git a/base_comment_template/i18n/sr.po b/base_comment_template/i18n/sr.po new file mode 100644 index 0000000..cac4709 --- /dev/null +++ b/base_comment_template/i18n/sr.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/sr@latin.po b/base_comment_template/i18n/sr@latin.po new file mode 100644 index 0000000..45069ae --- /dev/null +++ b/base_comment_template/i18n/sr@latin.po @@ -0,0 +1,130 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/sv.po b/base_comment_template/i18n/sv.po new file mode 100644 index 0000000..30d62a8 --- /dev/null +++ b/base_comment_template/i18n/sv.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Visa namn" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/th.po b/base_comment_template/i18n/th.po new file mode 100644 index 0000000..a86767f --- /dev/null +++ b/base_comment_template/i18n/th.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "รหัส" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/tr.po b/base_comment_template/i18n/tr.po new file mode 100644 index 0000000..1e39e27 --- /dev/null +++ b/base_comment_template/i18n/tr.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +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__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/tr_TR.po b/base_comment_template/i18n/tr_TR.po new file mode 100644 index 0000000..42ea972 --- /dev/null +++ b/base_comment_template/i18n/tr_TR.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +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__id +msgid "ID" +msgstr "Kimlik" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/uk.po b/base_comment_template/i18n/uk.po new file mode 100644 index 0000000..7c1d287 --- /dev/null +++ b/base_comment_template/i18n/uk.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/vi.po b/base_comment_template/i18n/vi.po new file mode 100644 index 0000000..dbb071a --- /dev/null +++ b/base_comment_template/i18n/vi.po @@ -0,0 +1,128 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +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__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/vi_VN.po b/base_comment_template/i18n/vi_VN.po new file mode 100644 index 0000000..aed2e71 --- /dev/null +++ b/base_comment_template/i18n/vi_VN.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/zh_CN.po b/base_comment_template/i18n/zh_CN.po new file mode 100644 index 0000000..8e00d95 --- /dev/null +++ b/base_comment_template/i18n/zh_CN.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "显示名称" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "ID" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/i18n/zh_TW.po b/base_comment_template/i18n/zh_TW.po new file mode 100644 index 0000000..6596805 --- /dev/null +++ b/base_comment_template/i18n/zh_TW.po @@ -0,0 +1,129 @@ +# 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 +#: selection:base.comment.template,position:0 +msgid "After lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model,name:base_comment_template.model_base_comment_template +msgid "Base comment template" +msgstr "" + +#. module: base_comment_template +#: selection:base.comment.template,position:0 +msgid "Before lines" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__text +#: model_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Comment" +msgstr "" + +#. module: base_comment_template +#: model:ir.actions.act_window,name:base_comment_template.action_base_comment_template +#: 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 +msgid "Comment Templates" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__name +msgid "Comment summary" +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.fields,field_description:base_comment_template.field_res_partner__property_comment_template_id +#: model:ir.model.fields,field_description:base_comment_template.field_res_users__property_comment_template_id +msgid "Conditions template" +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 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__id +msgid "ID" +msgstr "編號" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__company_id +msgid "If set, it'll only be available for this company" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template____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_terms:ir.ui.view,arch_db:base_comment_template.view_base_comment_template_form +msgid "Name" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,field_description:base_comment_template.field_base_comment_template__position +msgid "Position" +msgstr "" + +#. module: base_comment_template +#: model:ir.model.fields,help:base_comment_template.field_base_comment_template__position +msgid "Position on document" +msgstr "" diff --git a/base_comment_template/models/__init__.py b/base_comment_template/models/__init__.py new file mode 100644 index 0000000..b62fbec --- /dev/null +++ b/base_comment_template/models/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import comment +from . import res_partner diff --git a/base_comment_template/models/comment.py b/base_comment_template/models/comment.py new file mode 100644 index 0000000..fd8aa2e --- /dev/null +++ b/base_comment_template/models/comment.py @@ -0,0 +1,48 @@ +# Copyright 2014 Guewen Baconnier (Camptocamp SA) +# Copyright 2013-2014 Nicolas Bessi (Camptocamp SA) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from flectra import fields, models + + +class BaseCommentTemplate(models.Model): + _name = "base.comment.template" + _description = "Base comment template" + + active = fields.Boolean(default=True) + + name = fields.Char( + string="Comment summary", + required=True, + ) + + position = fields.Selection( + selection=[ + ("before_lines", "Before lines"), + ("after_lines", "After lines"), + ], + required=True, + default="before_lines", + help="Position on document", + ) + + text = fields.Html( + string="Comment", + translate=True, + required=True, + ) + + company_id = fields.Many2one( + "res.company", + string="Company", + help="If set, it'll only be available for this company", + ondelete="cascade", + index=True, + ) + + def get_value(self, partner_id=False): + self.ensure_one() + lang = None + if partner_id: + lang = self.env["res.partner"].browse(partner_id).lang + return self.with_context(lang=lang).text diff --git a/base_comment_template/models/res_partner.py b/base_comment_template/models/res_partner.py new file mode 100644 index 0000000..a895663 --- /dev/null +++ b/base_comment_template/models/res_partner.py @@ -0,0 +1,19 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from flectra import api, fields, models + + +class ResPartner(models.Model): + _inherit = "res.partner" + + property_comment_template_id = fields.Many2one( + comodel_name="base.comment.template", + string="Conditions template", + company_dependent=True, + ) + + @api.model + def _commercial_fields(self): + res = super(ResPartner, self)._commercial_fields() + res += ["property_comment_template_id"] + return res 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 0000000..7485600 --- /dev/null +++ b/base_comment_template/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +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 0000000..ceca86a --- /dev/null +++ b/base_comment_template/security/security.xml @@ -0,0 +1,13 @@ + + + + + Base comment multi-company + + + ['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])] + + + diff --git a/base_comment_template/static/description/icon.png b/base_comment_template/static/description/icon.png new file mode 100644 index 0000000..3a0328b 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 0000000..354d7e2 --- /dev/null +++ b/base_comment_template/static/description/index.html @@ -0,0 +1,443 @@ + + + + + + +Base Comments Templates + + + +
+

Base Comments Templates

+ + +

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

+

Add a new model to define templates of comments to print on +documents.

+

Two positions are available for the comments: +* above document lines +* below document lines

+

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

+ +
+

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 0000000..e198115 --- /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/test_base_comment_template.py b/base_comment_template/tests/test_base_comment_template.py new file mode 100644 index 0000000..d0da204 --- /dev/null +++ b/base_comment_template/tests/test_base_comment_template.py @@ -0,0 +1,37 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +from flectra.tests.common import TransactionCase + + +class TestResPartner(TransactionCase): + def setUp(self): + super(TestResPartner, self).setUp() + self.template_id = self.env["base.comment.template"].create( + { + "name": "Comment before lines", + "position": "before_lines", + "text": "

Text before lines

", + } + ) + + def test_commercial_partner_fields(self): + # Azure Interior + partner_id = self.env.ref("base.res_partner_12") + partner_id.property_comment_template_id = self.template_id.id + # Test childs propagation of commercial partner field + for child_id in partner_id.child_ids: + self.assertEqual(child_id.property_comment_template_id, self.template_id) + + def test_get_value_without_partner(self): + self.assertEqual(self.template_id.get_value(), "

Text before lines

") + + def test_get_value_with_partner(self): + self.env["res.lang"]._activate_lang("fr_BE") + partner = self.env.ref("base.res_partner_12") + partner.write({"lang": "fr_BE"}) + self.template_id.with_context(lang="fr_BE").write( + {"text": "

Testing translated fr_BE

"} + ) + self.assertEqual( + self.template_id.get_value(partner_id=partner.id), + "

Testing translated fr_BE

", + ) diff --git a/base_comment_template/views/comment_view.xml b/base_comment_template/views/comment_view.xml new file mode 100644 index 0000000..1caf7f6 --- /dev/null +++ b/base_comment_template/views/comment_view.xml @@ -0,0 +1,87 @@ + + + + + base.comment.template.search + base.comment.template + + + + + + + + + + + base.comment.template.form + base.comment.template + +
+ +
+ +
+
+

+ +

+
+ + + + + + + + + + + + + +
+
+
+
+ + + account.comment.template.list + base.comment.template + + + + + + + + + + + + Comment Templates + ir.actions.act_window + base.comment.template + tree,form + + + +
diff --git a/base_comment_template/views/res_partner.xml b/base_comment_template/views/res_partner.xml new file mode 100644 index 0000000..c8cbc37 --- /dev/null +++ b/base_comment_template/views/res_partner.xml @@ -0,0 +1,17 @@ + + + + res.partner + + + + + + + + + + diff --git a/bi_sql_editor/COPYRIGHT b/bi_sql_editor/COPYRIGHT new file mode 100644 index 0000000..9363453 --- /dev/null +++ b/bi_sql_editor/COPYRIGHT @@ -0,0 +1,17 @@ +Most of the files are + + Copyright (C) 2014 - Today GRAP (http://www.grap.coop) + Copyright (C) 2017 - Today: GRAP (http://www.grap.coop) + Copyright 2015-2017 Onestein () + Copyright 2017 Onestein () + Copyright 2018 Flectra Community + +Many files also contain contributions from third +parties. In this case the original copyright of +the contributions can be traced through the +history of the source version control system. + +When that is not the case, the files contain a prominent +notice stating the original copyright and applicable +license, or come with their own dedicated COPYRIGHT +and/or LICENSE file. \ No newline at end of file diff --git a/bi_sql_editor/LICENSE b/bi_sql_editor/LICENSE new file mode 100644 index 0000000..3939cd9 --- /dev/null +++ b/bi_sql_editor/LICENSE @@ -0,0 +1,663 @@ +For copyright information, please see the COPYRIGHT file. + +GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. \ No newline at end of file diff --git a/bi_sql_editor/README.rst b/bi_sql_editor/README.rst new file mode 100644 index 0000000..0b3534f --- /dev/null +++ b/bi_sql_editor/README.rst @@ -0,0 +1,192 @@ +.. 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 + +=========================================================== +BI Views builder, based on Materialized or Normal SQL Views +=========================================================== + +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 + +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:: /bi_sql_editor/static/description/01_sql_request.png + :width: 800 px + +* Select the group(s) that could have access to the view + + .. figure:: /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:: /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:: /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:: /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:: /bi_sql_editor/static/description/05_reporting_pie.png + :width: 800 px + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/143/10.0 + +Known issues / Roadmap +====================== + +* Add 'interval', after type (row/col/measure) field for date(time) fields. +* Possibly avoid the monkey patches + +Note +==== + +* If the view is materialized, the name of the action will contain the date + and the time of it last refresh: + + .. figure:: /bi_sql_editor/static/description/06_action_datetime_name.png + :width: 800 px + +* The syntax of the sql request has the following constrains: the name of the + selectable columns should be prefixed by `x_` + +Sample: + +.. code-block:: sql + + SELECT name as x_name + FROM res_partner + +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 smash it by providing detailed and welcomed feedback. + +Credits +======= + +Contributors +------------ + +* Sylvain LE GAL (https://twitter.com/legalsylvain) + +* This module is highly inspired by the work of + * Onestein: (http://www.onestein.nl/) + Module: OCA/server-tools/bi_view_editor. + Link: https://github.com/OCA/reporting-engine/tree/9.0/bi_view_editor + * Anybox: (https://anybox.fr/) + Module : OCA/server-tools/materialized_sql_view + link: https://github.com/OCA/server-tools/pull/110 + * GRAP, Groupement Régional Alimentaire de Proximité: (http://www.grap.coop/) + Module: grap/odoo-addons-misc/pos_sale_reporting + link: https://github.com/grap/odoo-addons-misc/tree/7.0/pos_sale_reporting + + +Funders +------- + +The development of this module has been financially supported by: + +* GRAP, Groupement Régional Alimentaire de Proximité (http://www.grap.coop) + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +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. + +To contribute to this module, please visit https://odoo-community.org. \ No newline at end of file diff --git a/bi_sql_editor/__init__.py b/bi_sql_editor/__init__.py new file mode 100644 index 0000000..c09f841 --- /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 0000000..6b47771 --- /dev/null +++ b/bi_sql_editor/__manifest__.py @@ -0,0 +1,29 @@ +# 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': '2.0.1.0.0', + 'license': 'AGPL-3', + 'category': 'Reporting', + 'author': 'GRAP,Odoo Community Association (OCA)', + 'website': 'https://gitlab.com/flectra-community/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 0000000..598736c --- /dev/null +++ b/bi_sql_editor/demo/bi_sql_view_demo.xml @@ -0,0 +1,57 @@ + + + + + + + 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 0000000..4cb311d --- /dev/null +++ b/bi_sql_editor/demo/res_groups_demo.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/bi_sql_editor/hooks.py b/bi_sql_editor/hooks.py new file mode 100644 index 0000000..74fd528 --- /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 flectra import SUPERUSER_ID +from flectra.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 0000000..4bbf7af --- /dev/null +++ b/bi_sql_editor/i18n/am.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..d501421 --- /dev/null +++ b/bi_sql_editor/i18n/ar.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "الاسم" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/bg.po b/bi_sql_editor/i18n/bg.po new file mode 100644 index 0000000..305193b --- /dev/null +++ b/bi_sql_editor/i18n/bg.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Име" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..2b3d24e --- /dev/null +++ b/bi_sql_editor/i18n/bi_sql_editor.pot @@ -0,0 +1,595 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..533787b --- /dev/null +++ b/bi_sql_editor/i18n/bs.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "U pripremi" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Ime" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/ca.po b/bi_sql_editor/i18n/ca.po new file mode 100644 index 0000000..b29cfc0 --- /dev/null +++ b/bi_sql_editor/i18n/ca.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Esborrany" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nom" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/cs.po b/bi_sql_editor/i18n/cs.po new file mode 100644 index 0000000..cf44704 --- /dev/null +++ b/bi_sql_editor/i18n/cs.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Návrh" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Název" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/da.po b/bi_sql_editor/i18n/da.po new file mode 100644 index 0000000..043ac32 --- /dev/null +++ b/bi_sql_editor/i18n/da.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Udkast" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Navn" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/de.po b/bi_sql_editor/i18n/de.po new file mode 100644 index 0000000..5b796f8 --- /dev/null +++ b/bi_sql_editor/i18n/de.po @@ -0,0 +1,634 @@ +# 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: 2017-08-12 02:51+0000\n" +"Last-Translator: Rudolf Schnapka , 2017\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" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model: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.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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +msgstr "Verfügbar" + +#. 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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Entwurf" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Bezeichnung" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +msgstr "SQL gültig" + +#. 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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "Nicht verfügbar" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "Auswahl" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "this will refresh the materialized view" +msgstr "" + +#~ msgid "Allowed Users" +#~ msgstr "Erlaubte Benutzer" diff --git a/bi_sql_editor/i18n/el_GR.po b/bi_sql_editor/i18n/el_GR.po new file mode 100644 index 0000000..9ca7220 --- /dev/null +++ b/bi_sql_editor/i18n/el_GR.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Ονομασία" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..6c432c0 --- /dev/null +++ b/bi_sql_editor/i18n/en_GB.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Draft" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Name" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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.po b/bi_sql_editor/i18n/es.po new file mode 100644 index 0000000..d0cb848 --- /dev/null +++ b/bi_sql_editor/i18n/es.po @@ -0,0 +1,628 @@ +# 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: 2019-08-14 08:44+0000\n" +"Last-Translator: Jaime Arroyo \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 3.7.1\n" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "%s (Copiar)" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "No suscrito" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "selección" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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_AR.po b/bi_sql_editor/i18n/es_AR.po new file mode 100644 index 0000000..4ea4ceb --- /dev/null +++ b/bi_sql_editor/i18n/es_AR.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..fbc2d0a --- /dev/null +++ b/bi_sql_editor/i18n/es_CL.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..8f7037e --- /dev/null +++ b/bi_sql_editor/i18n/es_CO.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..22ba0a5 --- /dev/null +++ b/bi_sql_editor/i18n/es_CR.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Borrador" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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_DO.po b/bi_sql_editor/i18n/es_DO.po new file mode 100644 index 0000000..4d03011 --- /dev/null +++ b/bi_sql_editor/i18n/es_DO.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..80279f5 --- /dev/null +++ b/bi_sql_editor/i18n/es_EC.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Borrador" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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_ES.po b/bi_sql_editor/i18n/es_ES.po new file mode 100644 index 0000000..ddfedc5 --- /dev/null +++ b/bi_sql_editor/i18n/es_ES.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Borrador" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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_MX.po b/bi_sql_editor/i18n/es_MX.po new file mode 100644 index 0000000..b0112bd --- /dev/null +++ b/bi_sql_editor/i18n/es_MX.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Borrador" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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_PE.po b/bi_sql_editor/i18n/es_PE.po new file mode 100644 index 0000000..d2271f0 --- /dev/null +++ b/bi_sql_editor/i18n/es_PE.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..942eda7 --- /dev/null +++ b/bi_sql_editor/i18n/es_PY.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..3b267f4 --- /dev/null +++ b/bi_sql_editor/i18n/es_VE.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Borrador" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nombre" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/et.po b/bi_sql_editor/i18n/et.po new file mode 100644 index 0000000..f1740f0 --- /dev/null +++ b/bi_sql_editor/i18n/et.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Mustand" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nimi" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/eu.po b/bi_sql_editor/i18n/eu.po new file mode 100644 index 0000000..de48038 --- /dev/null +++ b/bi_sql_editor/i18n/eu.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Izena" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..aa18551 --- /dev/null +++ b/bi_sql_editor/i18n/fa.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "نام" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..3349555 --- /dev/null +++ b/bi_sql_editor/i18n/fi.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Luonnos" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nimi" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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.po b/bi_sql_editor/i18n/fr.po new file mode 100644 index 0000000..064efe3 --- /dev/null +++ b/bi_sql_editor/i18n/fr.po @@ -0,0 +1,682 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "%s (Copie)" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, 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:365 +#, 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_group_ids +#: model: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.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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +msgstr "Disponible" + +#. 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 +#: selection:bi.sql.view.field,graph_type:0 +msgid "Column" +msgstr "Colonne" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" +"Texte séparé par des virgules. Valeurs posisbles : \"graph\", \"pivot\" ou " +"\"tree\"" + +#. module: bi_sql_editor +#: model:ir.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Brouillon" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "Caché" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nom" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "Ouvrir la vue" + +#. module: bi_sql_editor +#: model:ir.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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "Rafraichir la vue matérialisée %s" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "Ligne" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "Champs SQL" + +#. module: bi_sql_editor +#: model:ir.ui.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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +msgstr "SQL Validé" + +#. 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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "Vue SQL et Modèle créés" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "Vues SQL" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "Indisponible" + +#. module: bi_sql_editor +#: model: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: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "Interface utilisateur" + +#. module: bi_sql_editor +#: model:ir.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 +#: selection:bi.sql.view,state:0 +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:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,name:bi_sql_editor.model_bi_sql_view +msgid "bi.sql.view" +msgstr "bi.sql.view" + +#. module: bi_sql_editor +#: model:ir.model,name:bi_sql_editor.model_bi_sql_view_field +msgid "bi.sql.view.field" +msgstr "bi.sql.view.field" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "boolean" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "char" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "date" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "datetime" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "float" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "integer" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "many2one" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "selection" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "sequence" + +#. module: bi_sql_editor +#: model: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 "You can only unlink draft views" +#~ msgstr "Vous pouvez seulement supprimer des vues en brouillon" + +#~ msgid "Allowed Users" +#~ msgstr "Utilisateurs Autorisés" diff --git a/bi_sql_editor/i18n/fr_CA.po b/bi_sql_editor/i18n/fr_CA.po new file mode 100644 index 0000000..7b05d85 --- /dev/null +++ b/bi_sql_editor/i18n/fr_CA.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nom" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..758ba1e --- /dev/null +++ b/bi_sql_editor/i18n/fr_CH.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Brouillon" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/gl.po b/bi_sql_editor/i18n/gl.po new file mode 100644 index 0000000..f8f4fd3 --- /dev/null +++ b/bi_sql_editor/i18n/gl.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Borrador" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nome" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/gl_ES.po b/bi_sql_editor/i18n/gl_ES.po new file mode 100644 index 0000000..de5f3e4 --- /dev/null +++ b/bi_sql_editor/i18n/gl_ES.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..565702e --- /dev/null +++ b/bi_sql_editor/i18n/he.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "שם" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..70be27b --- /dev/null +++ b/bi_sql_editor/i18n/hr.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Skica" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Naziv" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "odabir" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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_HR.po b/bi_sql_editor/i18n/hr_HR.po new file mode 100644 index 0000000..172728d --- /dev/null +++ b/bi_sql_editor/i18n/hr_HR.po @@ -0,0 +1,629 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Naziv" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..8efd1a6 --- /dev/null +++ b/bi_sql_editor/i18n/hu.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Tervezet" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Név" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/id.po b/bi_sql_editor/i18n/id.po new file mode 100644 index 0000000..7aa9edc --- /dev/null +++ b/bi_sql_editor/i18n/id.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nama" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..441c79d --- /dev/null +++ b/bi_sql_editor/i18n/it.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +msgstr "Disponibile" + +#. 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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Bozza" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nome" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "Riga" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "Non disponibile" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/ja.po b/bi_sql_editor/i18n/ja.po new file mode 100644 index 0000000..c646083 --- /dev/null +++ b/bi_sql_editor/i18n/ja.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "名称" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/ko.po b/bi_sql_editor/i18n/ko.po new file mode 100644 index 0000000..1c74183 --- /dev/null +++ b/bi_sql_editor/i18n/ko.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "이름" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..1145fc4 --- /dev/null +++ b/bi_sql_editor/i18n/lt.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Juodraštis" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Pavadinimas" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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_LT.po b/bi_sql_editor/i18n/lt_LT.po new file mode 100644 index 0000000..e831c94 --- /dev/null +++ b/bi_sql_editor/i18n/lt_LT.po @@ -0,0 +1,629 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..a4ff2cc --- /dev/null +++ b/bi_sql_editor/i18n/lv.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nosaukums" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..d2828b7 --- /dev/null +++ b/bi_sql_editor/i18n/mk.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Име" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/mn.po b/bi_sql_editor/i18n/mn.po new file mode 100644 index 0000000..3712cfc --- /dev/null +++ b/bi_sql_editor/i18n/mn.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Нэр" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/nb.po b/bi_sql_editor/i18n/nb.po new file mode 100644 index 0000000..856dc09 --- /dev/null +++ b/bi_sql_editor/i18n/nb.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Utkast" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Navn" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/nb_NO.po b/bi_sql_editor/i18n/nb_NO.po new file mode 100644 index 0000000..f930e33 --- /dev/null +++ b/bi_sql_editor/i18n/nb_NO.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Drøfting" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/nl.po b/bi_sql_editor/i18n/nl.po new file mode 100644 index 0000000..6cb99e2 --- /dev/null +++ b/bi_sql_editor/i18n/nl.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Concept" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Naam" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/nl_BE.po b/bi_sql_editor/i18n/nl_BE.po new file mode 100644 index 0000000..4fca454 --- /dev/null +++ b/bi_sql_editor/i18n/nl_BE.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Concept" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Naam:" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/nl_NL.po b/bi_sql_editor/i18n/nl_NL.po new file mode 100644 index 0000000..159045e --- /dev/null +++ b/bi_sql_editor/i18n/nl_NL.po @@ -0,0 +1,629 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..6cc580e --- /dev/null +++ b/bi_sql_editor/i18n/pl.po @@ -0,0 +1,629 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Projekt" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nazwa" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/pt.po b/bi_sql_editor/i18n/pt.po new file mode 100644 index 0000000..f6d7150 --- /dev/null +++ b/bi_sql_editor/i18n/pt.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Rascunho" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nome" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/pt_BR.po b/bi_sql_editor/i18n/pt_BR.po new file mode 100644 index 0000000..b295729 --- /dev/null +++ b/bi_sql_editor/i18n/pt_BR.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Rascunho" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nome" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/pt_PT.po b/bi_sql_editor/i18n/pt_PT.po new file mode 100644 index 0000000..98e3052 --- /dev/null +++ b/bi_sql_editor/i18n/pt_PT.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Rascunho" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nome" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/ro.po b/bi_sql_editor/i18n/ro.po new file mode 100644 index 0000000..147d443 --- /dev/null +++ b/bi_sql_editor/i18n/ro.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Schiță" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Nume" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/ru.po b/bi_sql_editor/i18n/ru.po new file mode 100644 index 0000000..df0be59 --- /dev/null +++ b/bi_sql_editor/i18n/ru.po @@ -0,0 +1,629 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Название" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/sk.po b/bi_sql_editor/i18n/sk.po new file mode 100644 index 0000000..2fc4679 --- /dev/null +++ b/bi_sql_editor/i18n/sk.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Meno" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..b861bf6 --- /dev/null +++ b/bi_sql_editor/i18n/sl.po @@ -0,0 +1,666 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "%s (kopija)" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "%s Dostop %s" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, 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_group_ids +#: model: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.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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +msgstr "Na voljo" + +#. 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 +#: selection:bi.sql.view.field,graph_type:0 +msgid "Column" +msgstr "Stolpec" + +#. module: bi_sql_editor +#: model:ir.model.fields,help:bi_sql_editor.field_bi_sql_view_view_order +msgid "Comma-separated text. Possible values: \"graph\", \"pivot\" or \"tree\"" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Osnutek" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Naziv" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "Odoo prikaz" + +#. module: bi_sql_editor +#: model:ir.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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "Osveži materializirani prikaz %s" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "Vrstica" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "SQL polja" + +#. module: bi_sql_editor +#: model:ir.ui.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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +msgstr "SQL veljaven" + +#. 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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "SQL prikaz in model ustvarjena" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "SQL prikazi" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "Ni na voljo" + +#. module: bi_sql_editor +#: model: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: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "Uporabniški vmesnik" + +#. module: bi_sql_editor +#: model:ir.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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "boolean" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "char" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "date" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "datetime" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "float" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "integer" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "many2one" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "selection" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "sequence" + +#. module: bi_sql_editor +#: model: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 "You can only unlink draft views" +#~ msgstr "Razvezujete lahko le osnutke prikazov" + +#~ msgid "Allowed Users" +#~ msgstr "Dovoljeni uporabniki" diff --git a/bi_sql_editor/i18n/sr.po b/bi_sql_editor/i18n/sr.po new file mode 100644 index 0000000..8e983d3 --- /dev/null +++ b/bi_sql_editor/i18n/sr.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Ime" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..9a29400 --- /dev/null +++ b/bi_sql_editor/i18n/sr@latin.po @@ -0,0 +1,629 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Nacrt" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Ime:" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/sv.po b/bi_sql_editor/i18n/sv.po new file mode 100644 index 0000000..4db22ff --- /dev/null +++ b/bi_sql_editor/i18n/sv.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Preliminär" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Namn" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/th.po b/bi_sql_editor/i18n/th.po new file mode 100644 index 0000000..c0583c6 --- /dev/null +++ b/bi_sql_editor/i18n/th.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "ชื่อ" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/tr.po b/bi_sql_editor/i18n/tr.po new file mode 100644 index 0000000..bff3fdf --- /dev/null +++ b/bi_sql_editor/i18n/tr.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +msgstr "Uygun" + +#. 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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Taslak" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Adı" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/tr_TR.po b/bi_sql_editor/i18n/tr_TR.po new file mode 100644 index 0000000..ff313c0 --- /dev/null +++ b/bi_sql_editor/i18n/tr_TR.po @@ -0,0 +1,629 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +msgstr "Uygun" + +#. 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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Taslak" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Ad" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "Uygun değil" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/uk.po b/bi_sql_editor/i18n/uk.po new file mode 100644 index 0000000..acf168c --- /dev/null +++ b/bi_sql_editor/i18n/uk.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Name" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..0a1936a --- /dev/null +++ b/bi_sql_editor/i18n/vi.po @@ -0,0 +1,627 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +msgstr "Dự thảo" + +#. 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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Tên" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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_VN.po b/bi_sql_editor/i18n/vi_VN.po new file mode 100644 index 0000000..db8d7ab --- /dev/null +++ b/bi_sql_editor/i18n/vi_VN.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "Tên" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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 0000000..8c1b0e1 --- /dev/null +++ b/bi_sql_editor/i18n/zh_CN.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "名称" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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_TW.po b/bi_sql_editor/i18n/zh_TW.po new file mode 100644 index 0000000..c4251a1 --- /dev/null +++ b/bi_sql_editor/i18n/zh_TW.po @@ -0,0 +1,628 @@ +# 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:454 +#, 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:234 +#, python-format +msgid "%s (Copy)" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:337 +#, python-format +msgid "%s Access %s" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:365 +#, python-format +msgid "Access %s" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_group_ids +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Allowed Groups" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Available" +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 +#: selection:bi.sql.view.field,graph_type:0 +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.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: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_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 +#: selection:bi.sql.view,state:0 +msgid "Draft" +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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Hidden" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_id +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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_field_write_uid +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_write_date +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_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 +#: selection:bi.sql.view.field,graph_type:0 +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: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_field_name +msgid "Name" +msgstr "名稱" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:608 +#, 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:182 +#, python-format +msgid "Only graph, pivot or tree views are supported" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Open View" +msgstr "" + +#. module: bi_sql_editor +#: model: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: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:352 +#, python-format +msgid "Refresh Materialized View %s" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,graph_type:0 +msgid "Row" +msgstr "" + +#. module: bi_sql_editor +#: model: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:487 +#, 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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "SQL Fields" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "SQL Valid" +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 +#: selection:bi.sql.view,state:0 +msgid "SQL View and Model Created" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.actions.act_window,name:bi_sql_editor.action_bi_sql_view +#: model:ir.ui.menu,name:bi_sql_editor.menu_bi_sql_view +msgid "SQL Views" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.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: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: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: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 +#: selection:bi.sql.view.field,tree_visibility:0 +msgid "Unavailable" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "Update Model Access" +msgstr "" + +#. module: bi_sql_editor +#: model: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:ir.ui.view,arch_db:bi_sql_editor.view_bi_sql_view_form +msgid "User Interface" +msgstr "" + +#. module: bi_sql_editor +#: model: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 +#: selection:bi.sql.view,state:0 +msgid "Views, Action and Menu Created" +msgstr "" + +#. module: bi_sql_editor +#: code:addons/bi_sql_editor/models/bi_sql_view.py:172 +#: code:addons/bi_sql_editor/models/bi_sql_view_field.py:109 +#, 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:244 +#, 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:225 +#, 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,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 +#: selection:bi.sql.view.field,ttype:0 +msgid "boolean" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "char" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "date" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "datetime" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "float" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "integer" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "many2one" +msgstr "" + +#. module: bi_sql_editor +#: selection:bi.sql.view.field,ttype:0 +msgid "selection" +msgstr "" + +#. module: bi_sql_editor +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_field_sequence +#: model:ir.model.fields,field_description:bi_sql_editor.field_bi_sql_view_sequence +msgid "sequence" +msgstr "" + +#. module: bi_sql_editor +#: model: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/models/__init__.py b/bi_sql_editor/models/__init__.py new file mode 100644 index 0000000..e27e52a --- /dev/null +++ b/bi_sql_editor/models/__init__.py @@ -0,0 +1,4 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import bi_sql_view +from . import bi_sql_view_field 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 0000000..0ee73d5 --- /dev/null +++ b/bi_sql_editor/models/bi_sql_view.py @@ -0,0 +1,647 @@ +# 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 flectra import _, api, fields, models, SUPERUSER_ID +from flectra.exceptions import UserError +from flectra.tools import pycompat, sql +from flectra.addons.base.ir.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_native(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' + _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)], + }) + + 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='Flectra Model', comodel_name='ir.model', readonly=True) + + tree_view_id = fields.Many2one( + string='Flectra Tree View', comodel_name='ir.ui.view', readonly=True) + + graph_view_id = fields.Many2one( + string='Flectra Graph View', comodel_name='ir.ui.view', readonly=True) + + pivot_view_id = fields.Many2one( + string='Flectra Pivot View', comodel_name='ir.ui.view', readonly=True) + + search_view_id = fields.Many2one( + string='Flectra Search View', comodel_name='ir.ui.view', readonly=True) + + action_id = fields.Many2one( + string='Flectra Action', comodel_name='ir.actions.act_window', + readonly=True) + + menu_id = fields.Many2one( + string='Flectra Menu', comodel_name='ir.ui.menu', readonly=True) + + cron_id = fields.Many2one( + string='Flectra Cron', comodel_name='ir.cron', readonly=True, + help="Cron Task that will refresh the materialized view") + + rule_id = fields.Many2one( + string='Flectra 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') + @api.multi + 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') + @api.multi + 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('is_materialized') + @api.multi + 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') + @api.multi + def _compute_view_name(self): + for sql_view in self: + sql_view.view_name = '%s%s' % ( + sql_view._sql_prefix, sql_view.technical_name) + + @api.depends('technical_name') + @api.multi + def _compute_model_name(self): + for sql_view in self: + sql_view.model_name = '%s%s' % ( + 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 + @api.multi + 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 + + @api.multi + def unlink(self): + if any(view.state not in ('draft', 'sql_valid') for view in self): + raise UserError( + _("You can only unlink draft views." + "If you want to delete them, first set them to draft.")) + return super(BiSQLView, self).unlink() + + @api.multi + 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 + @api.multi + def button_create_sql_view_and_model(self): + for sql_view in self: + if sql_view.state != 'sql_valid': + raise UserError(_( + "You can only process this action on SQL Valid items")) + # 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: + sql_view.cron_id = self.env['ir.cron'].create( + sql_view._prepare_cron()).id + sql_view.state = 'model_valid' + + @api.multi + def button_set_draft(self): + for sql_view in self: + 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.cron_id: + sql_view.cron_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() + + # Drop ORM + sql_view._drop_model_and_fields() + + sql_view.write({'state': 'draft', 'has_group_changed': False}) + + @api.multi + 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'}) + + @api.multi + def button_update_model_access(self): + self._drop_model_access() + self._create_model_access() + self.write({'has_group_changed': False}) + + @api.multi + def button_refresh_materialized_view(self): + self._refresh_materialized_view() + + @api.multi + 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 + @api.multi + 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, + } + + @api.multi + 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 + + @api.multi + def _prepare_cron(self): + self.ensure_one() + 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, + } + + @api.multi + 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, + } + + @api.multi + 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])) + } + + @api.multi + 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])) + } + + @api.multi + 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])) + } + + @api.multi + 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])) + } + + @api.multi + def _prepare_action(self): + self.ensure_one() + view_mode = self.view_order + return { + 'name': self._prepare_action_name(), + 'res_model': self.model_id.model, + 'type': 'ir.actions.act_window', + 'view_mode': view_mode, + } + + @api.multi + def _prepare_action_name(self): + self.ensure_one() + if not self.is_materialized: + return self.name + return "%s (%s)" % ( + self.name, + datetime.utcnow().strftime(_("%m/%d/%Y %H:%M:%S UTC"))) + + @api.multi + 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) + + @api.multi + 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 + + @api.multi + 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, + e.message)) + + @api.multi + 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)) + + @api.multi + 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) + + @api.multi + 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) + + @api.multi + def _drop_model_access(self): + for sql_view in self: + self.env['ir.model.access'].search( + [('model_id', '=', sql_view.model_name)]).unlink() + + @api.multi + 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() + + @api.multi + 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() + + @api.multi + def _prepare_request_check_execution(self): + self.ensure_one() + return "CREATE VIEW %s AS (%s);" % (self.view_name, self.query) + + @api.multi + 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 %s VIEW %s AS (%s);" % ( + self.materialized_text, self.view_name, query) + + @api.multi + 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() + + @api.multi + def _refresh_materialized_view(self): + for sql_view in self.filtered(lambda x: x.is_materialized): + req = "REFRESH %s VIEW %s" % ( + 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.name = sql_view._prepare_action_name() + + @api.multi + 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] + + @api.multi + 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 0000000..360e829 --- /dev/null +++ b/bi_sql_editor/models/bi_sql_view_field.py @@ -0,0 +1,232 @@ +# 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 flectra import _, api, fields, models +from flectra.exceptions import UserError + + +class BiSQLViewField(models.Model): + _name = '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 Flectra 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': 'datetime', + 'timestamp without time zone': 'datetime', + } + + 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 Flectra field, displayed for users") + + ttype = fields.Selection( + string='Field Type', selection=_TTYPE_SELECTION, help="Type of the" + " Flectra 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' Flectra 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' Flectra field.\n" + " Comodel of the field.") + + # Constrains Section + @api.constrains('is_index') + @api.multi + 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 + @api.multi + def _compute_index_name(self): + for sql_field in self: + sql_field.index_name = '%s_%s' % ( + sql_field.bi_sql_view_id.view_name, sql_field.name) + + # Overload Section + @api.multi + 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 + + @api.multi + 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, + } + + @api.multi + 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 + + @api.multi + def _prepare_graph_field(self): + self.ensure_one() + res = '' + if self.graph_type and self.field_description: + res = """""".format( + self.name, self.graph_type) + return res + + @api.multi + def _prepare_pivot_field(self): + self.ensure_one() + res = '' + if self.graph_type and self.field_description: + res = """""".format( + self.name, self.graph_type) + return res + + @api.multi + def _prepare_search_field(self): + self.ensure_one() + res = '' + if self.field_description: + res = """""".format(self.name) + return res + + @api.multi + def _prepare_search_filter_field(self): + self.ensure_one() + res = '' + if self.field_description and self.is_group_by: + res =\ + """""" % ( + self.field_description, self.name) + return res 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 0000000..ca78a1e --- /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 0000000..118150e 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 0000000..fb717b9 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 0000000..08a8770 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 0000000..bcb25c0 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 0000000..1ec4ac0 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 0000000..c4c0a36 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 0000000..354994e 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 0000000..c72ba5c Binary files /dev/null and b/bi_sql_editor/static/description/icon.png differ 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 0000000..71c2984 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 0000000..4382f40 --- /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 0000000..ef804b5 --- /dev/null +++ b/bi_sql_editor/tests/test_bi_sql_view.py @@ -0,0 +1,87 @@ +# Copyright 2017 Onestein () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from flectra.tests.common import SingleTransactionCase, at_install, post_install +from flectra.exceptions import AccessError, UserError + + +@at_install(False) +@post_install(True) +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.sudo(self.no_bi_user.id).search( + [('name', '=', 'Partners View 2')]) + bi = self.bi_sql_view.sudo(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.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 0000000..7c927db --- /dev/null +++ b/bi_sql_editor/views/action.xml @@ -0,0 +1,18 @@ + + + + + + + SQL Views + ir.actions.act_window + bi.sql.view + form + tree,form + + + diff --git a/bi_sql_editor/views/menu.xml b/bi_sql_editor/views/menu.xml new file mode 100644 index 0000000..229ba45 --- /dev/null +++ b/bi_sql_editor/views/menu.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + 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 0000000..a2e542f --- /dev/null +++ b/bi_sql_editor/views/view_bi_sql_view.xml @@ -0,0 +1,131 @@ + + + + + + + bi.sql.view + + + + + + + + + + + + + bi.sql.view + +
+
+
+ +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
diff --git a/bi_sql_editor_aggregate/COPYRIGHT b/bi_sql_editor_aggregate/COPYRIGHT new file mode 100644 index 0000000..cee101d --- /dev/null +++ b/bi_sql_editor_aggregate/COPYRIGHT @@ -0,0 +1,14 @@ +Most of the files are + + Part of Flectra. See LICENSE file for full copyright and licensing details. + Copyright 2018 Flectra Community + +Many files also contain contributions from third +parties. In this case the original copyright of +the contributions can be traced through the +history of the source version control system. + +When that is not the case, the files contain a prominent +notice stating the original copyright and applicable +license, or come with their own dedicated COPYRIGHT +and/or LICENSE file. \ No newline at end of file diff --git a/bi_sql_editor_aggregate/LICENSE b/bi_sql_editor_aggregate/LICENSE new file mode 100644 index 0000000..3939cd9 --- /dev/null +++ b/bi_sql_editor_aggregate/LICENSE @@ -0,0 +1,663 @@ +For copyright information, please see the COPYRIGHT file. + +GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. \ No newline at end of file diff --git a/bi_sql_editor_aggregate/README.rst b/bi_sql_editor_aggregate/README.rst new file mode 100644 index 0000000..c385b51 --- /dev/null +++ b/bi_sql_editor_aggregate/README.rst @@ -0,0 +1,63 @@ +.. 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 + +================== +BI Views aggregate +================== + +This module extends the functionality of bi_sql_editor, to support creation +custom aggregation for float and integer values. + +After the model is generated, before creating the UI, the option is given +to define aggregation - either Sum (Default), Average, Minimum, or Maximum. + +Configuration +============= + +No configuration is required after installation. + +Usage +===== + +To use this module, you need to adjust the aggregation on the custom fields +tab of the sql_view between validating the SQL + +#. Go to 'Reporting' / 'Custom Reports' + +Known issues / Roadmap +====================== + +* Can be integrated with bi_sql_editor, but breaks for existing sites. +* Would be good to integrate and remove need for additional install. + +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 smash it by providing detailed and welcomed feedback. + +Credits +======= + +Contributors +------------ + +* Richard deMeester, Willdoo IT (http://www.willdooit.com/) + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +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. + +To contribute to this module, please visit https://odoo-community.org. \ No newline at end of file diff --git a/bi_sql_editor_aggregate/__init__.py b/bi_sql_editor_aggregate/__init__.py new file mode 100644 index 0000000..83e553a --- /dev/null +++ b/bi_sql_editor_aggregate/__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/bi_sql_editor_aggregate/__manifest__.py b/bi_sql_editor_aggregate/__manifest__.py new file mode 100644 index 0000000..c1de790 --- /dev/null +++ b/bi_sql_editor_aggregate/__manifest__.py @@ -0,0 +1,20 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + 'name': 'BI SQL Editor Aggregate', + 'summary': 'BI SQL Editor Aggregation', + 'version': '2.0.1.0.0', + 'license': 'AGPL-3', + 'category': 'Reporting', + 'author': 'Richard deMeester,Odoo Community Association (OCA)', + 'website': 'https://gitlab.com/flectra-community/reporting-engine', + 'depends': [ + 'bi_sql_editor', + ], + 'data': [ + 'views/view_bi_sql_view.xml', + ], + 'demo': [ + ], + 'installable': True, +} diff --git a/bi_sql_editor_aggregate/description/icon.png b/bi_sql_editor_aggregate/description/icon.png new file mode 100644 index 0000000..c72ba5c Binary files /dev/null and b/bi_sql_editor_aggregate/description/icon.png differ diff --git a/bi_sql_editor_aggregate/i18n/bi_sql_editor_aggregate.pot b/bi_sql_editor_aggregate/i18n/bi_sql_editor_aggregate.pot new file mode 100644 index 0000000..97103f9 --- /dev/null +++ b/bi_sql_editor_aggregate/i18n/bi_sql_editor_aggregate.pot @@ -0,0 +1,60 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_sql_editor_aggregate +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.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_aggregate +#: selection:bi.sql.view.field,group_operator:0 +msgid "Average" +msgstr "" + +#. module: bi_sql_editor_aggregate +#: model:ir.model.fields,help:bi_sql_editor_aggregate.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_aggregate +#: model:ir.model,name:bi_sql_editor_aggregate.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: bi_sql_editor_aggregate +#: model:ir.model.fields,field_description:bi_sql_editor_aggregate.field_bi_sql_view_field_group_operator +msgid "Group Operator" +msgstr "" + +#. module: bi_sql_editor_aggregate +#: selection:bi.sql.view.field,group_operator:0 +msgid "Maximum" +msgstr "" + +#. module: bi_sql_editor_aggregate +#: selection:bi.sql.view.field,group_operator:0 +msgid "Minimum" +msgstr "" + +#. module: bi_sql_editor_aggregate +#: selection:bi.sql.view.field,group_operator:0 +msgid "Sum" +msgstr "" + +#. module: bi_sql_editor_aggregate +#: model:ir.model,name:bi_sql_editor_aggregate.model_bi_sql_view +msgid "bi.sql.view" +msgstr "" + +#. module: bi_sql_editor_aggregate +#: model:ir.model,name:bi_sql_editor_aggregate.model_bi_sql_view_field +msgid "bi.sql.view.field" +msgstr "" + diff --git a/bi_sql_editor_aggregate/models/__init__.py b/bi_sql_editor_aggregate/models/__init__.py new file mode 100644 index 0000000..ef99aab --- /dev/null +++ b/bi_sql_editor_aggregate/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_aggregate/models/bi_sql_view.py b/bi_sql_editor_aggregate/models/bi_sql_view.py new file mode 100644 index 0000000..54854be --- /dev/null +++ b/bi_sql_editor_aggregate/models/bi_sql_view.py @@ -0,0 +1,38 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from flectra import models, tools + + +class BiSQLView(models.Model): + _inherit = 'bi.sql.view' + + 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 tools.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] diff --git a/bi_sql_editor_aggregate/models/bi_sql_view_field.py b/bi_sql_editor_aggregate/models/bi_sql_view_field.py new file mode 100644 index 0000000..9bf9103 --- /dev/null +++ b/bi_sql_editor_aggregate/models/bi_sql_view_field.py @@ -0,0 +1,19 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from flectra import fields, models + + +class BiSQLViewField(models.Model): + _inherit = 'bi.sql.view.field' + + _GROUP_OPERATOR_SELECTION = [ + ('sum', 'Sum'), + ('avg', 'Average'), + ('min', 'Minimum'), + ('max', 'Maximum'), + ] + + group_operator = fields.Selection( + string='Group Operator', selection=_GROUP_OPERATOR_SELECTION, + help="By default, Flectra will sum the values when grouping. If you wish" + " to alter the behaviour, choose an alternate Group Operator") diff --git a/bi_sql_editor_aggregate/models/ir_model.py b/bi_sql_editor_aggregate/models/ir_model.py new file mode 100644 index 0000000..3f9f902 --- /dev/null +++ b/bi_sql_editor_aggregate/models/ir_model.py @@ -0,0 +1,14 @@ +# Part of Flectra. See LICENSE file for full copyright and licensing details. + +from flectra import models + + +class IrModelFields(models.Model): + _inherit = 'ir.model.fields' + + def _add_manual_fields(self, model): + super(IrModelFields, self)._add_manual_fields(model) + if 'bi.sql.view' in self.env: + Sql = self.env['bi.sql.view'] + if hasattr(Sql, 'check_manual_fields'): + Sql.check_manual_fields(model) diff --git a/bi_sql_editor_aggregate/static/description/icon.png b/bi_sql_editor_aggregate/static/description/icon.png new file mode 100644 index 0000000..3a0328b Binary files /dev/null and b/bi_sql_editor_aggregate/static/description/icon.png differ diff --git a/bi_sql_editor_aggregate/views/view_bi_sql_view.xml b/bi_sql_editor_aggregate/views/view_bi_sql_view.xml new file mode 100644 index 0000000..6820b14 --- /dev/null +++ b/bi_sql_editor_aggregate/views/view_bi_sql_view.xml @@ -0,0 +1,19 @@ + + + + + + + bi.sql.view + + + + + + + + + diff --git a/bi_view_editor/COPYRIGHT b/bi_view_editor/COPYRIGHT new file mode 100644 index 0000000..6179f48 --- /dev/null +++ b/bi_view_editor/COPYRIGHT @@ -0,0 +1,18 @@ +Most of the files are + + /* Copyright 2015-2018 Onestein () + :Copyright: This stylesheet has been placed in the public domain. + Copyright 2015-2018 Onestein () + Copyright 2017-2018 Onestein () + Copyright 2018 Simone Rubino - Agile Business Group + Copyright 2018 Flectra Community + +Many files also contain contributions from third +parties. In this case the original copyright of +the contributions can be traced through the +history of the source version control system. + +When that is not the case, the files contain a prominent +notice stating the original copyright and applicable +license, or come with their own dedicated COPYRIGHT +and/or LICENSE file. \ No newline at end of file diff --git a/bi_view_editor/LICENSE b/bi_view_editor/LICENSE new file mode 100644 index 0000000..3939cd9 --- /dev/null +++ b/bi_view_editor/LICENSE @@ -0,0 +1,663 @@ +For copyright information, please see the COPYRIGHT file. + +GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. \ No newline at end of file diff --git a/bi_view_editor/README.rst b/bi_view_editor/README.rst new file mode 100644 index 0000000..202af25 --- /dev/null +++ b/bi_view_editor/README.rst @@ -0,0 +1,136 @@ +============== +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/11.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-11-0/reporting-engine-11-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/11.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: + +Usage +===== + +To graphically design your analysis data-set: + +- From the Dashboards menu, select "Custom BI Views" +- Browse trough the business objects in the Query 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 +- 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. + +Known issues / Roadmap +====================== + +* Non-stored fields and many2many fields are not supported +* Provide graph view for table relations +* Extend the capabilities of the tree views (e.g. add sums) +* Provide a tutorial (eg. a working example of usage) +* Implement a more advanced UI, with possibilities to use LEFT JOIN as default instead of INNER JOIN +* 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 +* Store the JSON data structure in ORM +* Would be nice if models available to select when creating a view are limited to the ones that have intersecting groups (for non technical users) + +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 +~~~~~~~~~~~~~ + +Images +------ + +* Odoo Community Association: `Icon `_. + +Funders +------- + +The development of this module 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. \ No newline at end of file diff --git a/bi_view_editor/__init__.py b/bi_view_editor/__init__.py new file mode 100644 index 0000000..c941740 --- /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 post_load, uninstall_hook diff --git a/bi_view_editor/__manifest__.py b/bi_view_editor/__manifest__.py new file mode 100644 index 0000000..612fb6b --- /dev/null +++ b/bi_view_editor/__manifest__.py @@ -0,0 +1,30 @@ +# Copyright 2015-2018 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://gitlab.com/flectra-community/reporting-engine', + 'category': 'Reporting', + 'version': '2.0.1.0.0', + 'depends': [ + 'base', + 'web', + 'base_sparse_field' + ], + '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' + ], + 'post_load': 'post_load', + '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 0000000..96effd6 --- /dev/null +++ b/bi_view_editor/hooks.py @@ -0,0 +1,72 @@ +# Copyright 2015-2018 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import logging + +from flectra import SUPERUSER_ID +from flectra import api, modules + +from flectra.tools import existing_tables, topological_sort + +_logger = logging.getLogger(__name__) + + +def _bi_view(_name): + return _name[0:6] == 'x_bve.' + + +def post_load(): + + def check_tables_exist(self, cr): + """ + Verify that all tables are present and try to initialize + those that are missing. + """ + # This monkey patch is meant to avoid that the _logger writes + # warning and error messages, while running an update all, + # in case the model is a bi-view-generated model. + + env = api.Environment(cr, SUPERUSER_ID, {}) + table2model = { + model._table: name for name, model in env.items() + if not model._abstract and not _bi_view(name) # here is the patch + } + missing_tables = set(table2model).difference( + existing_tables(cr, table2model)) + + if missing_tables: + missing = {table2model[table] for table in missing_tables} + _logger.warning("Models have no table: %s.", ", ".join(missing)) + # recreate missing tables following model dependencies + deps = {name: model._depends for name, model in env.items()} + for name in topological_sort(deps): + if name in missing: + _logger.info("Recreate table of model %s.", name) + env[name].init() + # check again, and log errors if tables are still missing + missing_tables = set(table2model).difference( + existing_tables(cr, table2model)) + for table in missing_tables: + _logger.error("Model %s has no table.", table2model[table]) + + modules.registry.Registry.check_tables_exist = check_tables_exist + + +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 0000000..6fdf0bf --- /dev/null +++ b/bi_view_editor/i18n/am.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/ar.po b/bi_view_editor/i18n/ar.po new file mode 100644 index 0000000..1a7c921 --- /dev/null +++ b/bi_view_editor/i18n/ar.po @@ -0,0 +1,360 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/bg.po b/bi_view_editor/i18n/bg.po new file mode 100644 index 0000000..e190d95 --- /dev/null +++ b/bi_view_editor/i18n/bg.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +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 0000000..f9b9440 --- /dev/null +++ b/bi_view_editor/i18n/bi_view_editor.pot @@ -0,0 +1,351 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * bi_view_editor +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "" + +#. module: bi_view_editor +#: model: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:64 +#: 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: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_display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" + diff --git a/bi_view_editor/i18n/bs.po b/bi_view_editor/i18n/bs.po new file mode 100644 index 0000000..5ffdd7c --- /dev/null +++ b/bi_view_editor/i18n/bs.po @@ -0,0 +1,360 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/ca.po b/bi_view_editor/i18n/ca.po new file mode 100644 index 0000000..6b1abd9 --- /dev/null +++ b/bi_view_editor/i18n/ca.po @@ -0,0 +1,362 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creat el" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "Estat" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +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 0000000..0714399 --- /dev/null +++ b/bi_view_editor/i18n/cs.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/da.po b/bi_view_editor/i18n/da.po new file mode 100644 index 0000000..5a2c775 --- /dev/null +++ b/bi_view_editor/i18n/da.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "Id" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/de.po b/bi_view_editor/i18n/de.po new file mode 100644 index 0000000..643913a --- /dev/null +++ b/bi_view_editor/i18n/de.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Erstellt am:" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Hinweise" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "Status" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/el_GR.po b/bi_view_editor/i18n/el_GR.po new file mode 100644 index 0000000..de81cd4 --- /dev/null +++ b/bi_view_editor/i18n/el_GR.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/en_GB.po b/bi_view_editor/i18n/en_GB.po new file mode 100644 index 0000000..5e630a7 --- /dev/null +++ b/bi_view_editor/i18n/en_GB.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Created on" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/es.po b/bi_view_editor/i18n/es.po new file mode 100644 index 0000000..e5089df --- /dev/null +++ b/bi_view_editor/i18n/es.po @@ -0,0 +1,369 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Notas" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "Consulta" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "Estado" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, 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 +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +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 0000000..dd2409c --- /dev/null +++ b/bi_view_editor/i18n/es_AR.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/es_CL.po b/bi_view_editor/i18n/es_CL.po new file mode 100644 index 0000000..12dd76e --- /dev/null +++ b/bi_view_editor/i18n/es_CL.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID (identificación)" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/es_CO.po b/bi_view_editor/i18n/es_CO.po new file mode 100644 index 0000000..5c4bae5 --- /dev/null +++ b/bi_view_editor/i18n/es_CO.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/es_CR.po b/bi_view_editor/i18n/es_CR.po new file mode 100644 index 0000000..18fdbbf --- /dev/null +++ b/bi_view_editor/i18n/es_CR.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/es_DO.po b/bi_view_editor/i18n/es_DO.po new file mode 100644 index 0000000..410f978 --- /dev/null +++ b/bi_view_editor/i18n/es_DO.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/es_EC.po b/bi_view_editor/i18n/es_EC.po new file mode 100644 index 0000000..56bdabc --- /dev/null +++ b/bi_view_editor/i18n/es_EC.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID (identificación)" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/es_ES.po b/bi_view_editor/i18n/es_ES.po new file mode 100644 index 0000000..10134e3 --- /dev/null +++ b/bi_view_editor/i18n/es_ES.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/es_MX.po b/bi_view_editor/i18n/es_MX.po new file mode 100644 index 0000000..3cafd50 --- /dev/null +++ b/bi_view_editor/i18n/es_MX.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/es_PE.po b/bi_view_editor/i18n/es_PE.po new file mode 100644 index 0000000..0d1b73b --- /dev/null +++ b/bi_view_editor/i18n/es_PE.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/es_PY.po b/bi_view_editor/i18n/es_PY.po new file mode 100644 index 0000000..efe107f --- /dev/null +++ b/bi_view_editor/i18n/es_PY.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/es_VE.po b/bi_view_editor/i18n/es_VE.po new file mode 100644 index 0000000..7e6ae24 --- /dev/null +++ b/bi_view_editor/i18n/es_VE.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/et.po b/bi_view_editor/i18n/et.po new file mode 100644 index 0000000..02556c5 --- /dev/null +++ b/bi_view_editor/i18n/et.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Loodud" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/eu.po b/bi_view_editor/i18n/eu.po new file mode 100644 index 0000000..9bfb515 --- /dev/null +++ b/bi_view_editor/i18n/eu.po @@ -0,0 +1,362 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Created on" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +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 0000000..1cb4df1 --- /dev/null +++ b/bi_view_editor/i18n/fa.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/fi.po b/bi_view_editor/i18n/fi.po new file mode 100644 index 0000000..8862964 --- /dev/null +++ b/bi_view_editor/i18n/fi.po @@ -0,0 +1,362 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Luotu" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Huomautukset" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "Tila" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +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 0000000..9c9c9c6 --- /dev/null +++ b/bi_view_editor/i18n/fr.po @@ -0,0 +1,362 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Date" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Commentaires" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "État" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +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 0000000..cc866b7 --- /dev/null +++ b/bi_view_editor/i18n/fr_CA.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "Identifiant" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/fr_CH.po b/bi_view_editor/i18n/fr_CH.po new file mode 100644 index 0000000..0ef6bd2 --- /dev/null +++ b/bi_view_editor/i18n/fr_CH.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "État" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/gl.po b/bi_view_editor/i18n/gl.po new file mode 100644 index 0000000..b71dc1d --- /dev/null +++ b/bi_view_editor/i18n/gl.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/gl_ES.po b/bi_view_editor/i18n/gl_ES.po new file mode 100644 index 0000000..beb7b6b --- /dev/null +++ b/bi_view_editor/i18n/gl_ES.po @@ -0,0 +1,358 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/he.po b/bi_view_editor/i18n/he.po new file mode 100644 index 0000000..5c756f1 --- /dev/null +++ b/bi_view_editor/i18n/he.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/hr.po b/bi_view_editor/i18n/hr.po new file mode 100644 index 0000000..2f9fdc0 --- /dev/null +++ b/bi_view_editor/i18n/hr.po @@ -0,0 +1,360 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Bilješke" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "Status" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/hr_HR.po b/bi_view_editor/i18n/hr_HR.po new file mode 100644 index 0000000..8837c6c --- /dev/null +++ b/bi_view_editor/i18n/hr_HR.po @@ -0,0 +1,360 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/hu.po b/bi_view_editor/i18n/hu.po new file mode 100644 index 0000000..e06b8b5 --- /dev/null +++ b/bi_view_editor/i18n/hu.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/id.po b/bi_view_editor/i18n/id.po new file mode 100644 index 0000000..5814374 --- /dev/null +++ b/bi_view_editor/i18n/id.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/it.po b/bi_view_editor/i18n/it.po new file mode 100644 index 0000000..6bb6d28 --- /dev/null +++ b/bi_view_editor/i18n/it.po @@ -0,0 +1,362 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creato il" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Note" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "Stato" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +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 0000000..6fd9bde --- /dev/null +++ b/bi_view_editor/i18n/ja.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "作成日" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "表示名" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/ko.po b/bi_view_editor/i18n/ko.po new file mode 100644 index 0000000..515c0b8 --- /dev/null +++ b/bi_view_editor/i18n/ko.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "작성일" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/lt.po b/bi_view_editor/i18n/lt.po new file mode 100644 index 0000000..a573641 --- /dev/null +++ b/bi_view_editor/i18n/lt.po @@ -0,0 +1,360 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/lt_LT.po b/bi_view_editor/i18n/lt_LT.po new file mode 100644 index 0000000..112103d --- /dev/null +++ b/bi_view_editor/i18n/lt_LT.po @@ -0,0 +1,360 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/lv.po b/bi_view_editor/i18n/lv.po new file mode 100644 index 0000000..95528f2 --- /dev/null +++ b/bi_view_editor/i18n/lv.po @@ -0,0 +1,360 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/mk.po b/bi_view_editor/i18n/mk.po new file mode 100644 index 0000000..f20c46d --- /dev/null +++ b/bi_view_editor/i18n/mk.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/mn.po b/bi_view_editor/i18n/mn.po new file mode 100644 index 0000000..d5c4233 --- /dev/null +++ b/bi_view_editor/i18n/mn.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/nb.po b/bi_view_editor/i18n/nb.po new file mode 100644 index 0000000..dff0641 --- /dev/null +++ b/bi_view_editor/i18n/nb.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/nb_NO.po b/bi_view_editor/i18n/nb_NO.po new file mode 100644 index 0000000..039c9a8 --- /dev/null +++ b/bi_view_editor/i18n/nb_NO.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Laget den" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/nl.po b/bi_view_editor/i18n/nl.po new file mode 100755 index 0000000..c20f64c --- /dev/null +++ b/bi_view_editor/i18n/nl.po @@ -0,0 +1,383 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Notities" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "Query" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "Status" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, 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 +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +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 0000000..e1a8c86 --- /dev/null +++ b/bi_view_editor/i18n/nl_BE.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/pl.po b/bi_view_editor/i18n/pl.po new file mode 100644 index 0000000..b6e085e --- /dev/null +++ b/bi_view_editor/i18n/pl.po @@ -0,0 +1,360 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/pt.po b/bi_view_editor/i18n/pt.po new file mode 100644 index 0000000..8c3d652 --- /dev/null +++ b/bi_view_editor/i18n/pt.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "Nome" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/pt_BR.po b/bi_view_editor/i18n/pt_BR.po new file mode 100644 index 0000000..d0cd6d6 --- /dev/null +++ b/bi_view_editor/i18n/pt_BR.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "Identificação" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "Estado" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/pt_PT.po b/bi_view_editor/i18n/pt_PT.po new file mode 100644 index 0000000..4362e6b --- /dev/null +++ b/bi_view_editor/i18n/pt_PT.po @@ -0,0 +1,362 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +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 0000000..1b3b80c --- /dev/null +++ b/bi_view_editor/i18n/ro.po @@ -0,0 +1,360 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Creat la" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/ru.po b/bi_view_editor/i18n/ru.po new file mode 100644 index 0000000..5d93c13 --- /dev/null +++ b/bi_view_editor/i18n/ru.po @@ -0,0 +1,361 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Создан" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/sk.po b/bi_view_editor/i18n/sk.po new file mode 100644 index 0000000..8ae2bbd --- /dev/null +++ b/bi_view_editor/i18n/sk.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/sl.po b/bi_view_editor/i18n/sl.po new file mode 100644 index 0000000..8bbe5b5 --- /dev/null +++ b/bi_view_editor/i18n/sl.po @@ -0,0 +1,386 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Opombe" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "Poizvedba" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "Stanje" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, 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 +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +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 0000000..2e2695e --- /dev/null +++ b/bi_view_editor/i18n/sr.po @@ -0,0 +1,360 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/sr@latin.po b/bi_view_editor/i18n/sr@latin.po new file mode 100644 index 0000000..d8f4994 --- /dev/null +++ b/bi_view_editor/i18n/sr@latin.po @@ -0,0 +1,360 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/sv.po b/bi_view_editor/i18n/sv.po new file mode 100644 index 0000000..f2a6b8d --- /dev/null +++ b/bi_view_editor/i18n/sv.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/th.po b/bi_view_editor/i18n/th.po new file mode 100644 index 0000000..0567f0c --- /dev/null +++ b/bi_view_editor/i18n/th.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/tr.po b/bi_view_editor/i18n/tr.po new file mode 100644 index 0000000..10c0b9f --- /dev/null +++ b/bi_view_editor/i18n/tr.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Notlar" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "Durum" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/tr_TR.po b/bi_view_editor/i18n/tr_TR.po new file mode 100644 index 0000000..e54245b --- /dev/null +++ b/bi_view_editor/i18n/tr_TR.po @@ -0,0 +1,367 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "Kimlik" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, 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 +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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "Notlar" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "Soru" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "Hal" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, 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 +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +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 0000000..3e4668e --- /dev/null +++ b/bi_view_editor/i18n/uk.po @@ -0,0 +1,360 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/vi.po b/bi_view_editor/i18n/vi.po new file mode 100644 index 0000000..3416da0 --- /dev/null +++ b/bi_view_editor/i18n/vi.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: bi_view_editor +#: model: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:64 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: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_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: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/vi_VN.po b/bi_view_editor/i18n/vi_VN.po new file mode 100644 index 0000000..7f545cf --- /dev/null +++ b/bi_view_editor/i18n/vi_VN.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. 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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/zh_CN.po b/bi_view_editor/i18n/zh_CN.po new file mode 100644 index 0000000..7caf0dc --- /dev/null +++ b/bi_view_editor/i18n/zh_CN.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "创建时间" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +msgstr "ID" + +#. 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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/i18n/zh_TW.po b/bi_view_editor/i18n/zh_TW.po new file mode 100644 index 0000000..ca0a7c8 --- /dev/null +++ b/bi_view_editor/i18n/zh_TW.po @@ -0,0 +1,359 @@ +# 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:415 +#, 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 +#: 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:409 +#, 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 +#. 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: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 +#, python-format +msgid "Column" +msgstr "" + +#. module: bi_view_editor +#: model: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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_create_date +msgid "Created on" +msgstr "建立於" + +#. module: bi_view_editor +#: model: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:64 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: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_display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: bi_view_editor +#: selection:bve.view,state:0 +msgid "Draft" +msgstr "" + +#. module: bi_view_editor +#: model: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 +msgid "ID" +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 +#. 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 +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_x_bi_sql_view_modules_view_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_x_bi_sql_view_modules_view_write_date +msgid "Last Updated on" +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 +#. 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 +#, python-format +msgid "Measure" +msgstr "" + +#. module: bi_view_editor +#. openerp-web +#: code:addons/bi_view_editor/static/src/xml/bi_view_editor.xml:86 +#, python-format +msgid "Model" +msgstr "" + +#. module: bi_view_editor +#: model:ir.model.fields,field_description:bi_view_editor.field_bve_view_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 +#, 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:284 +#, 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:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Notes" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#: code:addons/bi_view_editor/models/bve_view.py:224 +#, python-format +msgid "Please select at least one group on the security tab." +msgstr "" + +#. module: bi_view_editor +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Query" +msgstr "" + +#. module: bi_view_editor +#: model: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 +#, python-format +msgid "Row" +msgstr "" + +#. module: bi_view_editor +#: model: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_state +msgid "State" +msgstr "" + +#. module: bi_view_editor +#: model:ir.actions.act_window,name:bi_view_editor.action_bi_view_editor_translations +#: model:ir.ui.view,arch_db:bi_view_editor.view_bi_view_editor_view_form +msgid "Translations" +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 +#: code:addons/bi_view_editor/models/bve_view.py:456 +#, python-format +msgid "You cannot delete a created view! Reset the view to draft first." +msgstr "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_base +msgid "base" +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 "" + +#. module: bi_view_editor +#: model:ir.model,name:bi_view_editor.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" diff --git a/bi_view_editor/migrations/10.0.1.0.2/post-migrate.py b/bi_view_editor/migrations/10.0.1.0.2/post-migrate.py new file mode 100644 index 0000000..217d58e --- /dev/null +++ b/bi_view_editor/migrations/10.0.1.0.2/post-migrate.py @@ -0,0 +1,50 @@ +# Copyright 2018 Simone Rubino - Agile Business Group +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openupgradelib.openupgrade import logged_query, migrate +import json + + +@migrate() +def migrate(env, version): + cr = env.cr + convert_text_to_serialized( + cr, env['bve.view']._table, env['bve.view']._fields['data'].name) + pass + + +def convert_text_to_serialized( + cr, table, text_field_name, serialized_field_name=None): + """ + Convert Text field value to Serialized value. + """ + if not serialized_field_name: + serialized_field_name = text_field_name + select_query = """ +SELECT + id, + %(text_field_name)s +FROM %(table)s +WHERE %(text_field_name)s IS NOT NULL +""" + cr.execute( + select_query % { + 'text_field_name': text_field_name, + 'table': table, + } + ) + update_query = """ +UPDATE %(table)s + SET %(serialized_field_name)s = %%(field_value)s + WHERE id = %(record_id)d +""" + for row in cr.fetchall(): + # Fill in the field_value later because it needs escaping + row_update_query = update_query % { + 'serialized_field_name': serialized_field_name, + 'table': table, + 'record_id': row[0]} + logged_query( + cr, row_update_query, { + 'field_value': json.dumps(row[1]) + }) diff --git a/bi_view_editor/models/__init__.py b/bi_view_editor/models/__init__.py new file mode 100644 index 0000000..cacf524 --- /dev/null +++ b/bi_view_editor/models/__init__.py @@ -0,0 +1,5 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import models +from . import bve_view +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 0000000..12a086b --- /dev/null +++ b/bi_view_editor/models/bve_view.py @@ -0,0 +1,458 @@ +# Copyright 2015-2018 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import json + +from flectra import api, fields, models, tools +from flectra.exceptions import UserError +from flectra.tools.translate import _ + +from flectra.addons.base_sparse_field.models.fields import Serialized + + +class BveView(models.Model): + _name = 'bve.view' + _description = 'BI View Editor' + + @api.depends('group_ids') + @api.multi + def _compute_users(self): + for bve_view in self: + group_ids = bve_view.sudo().group_ids + if group_ids: + bve_view.user_ids = group_ids.mapped('users') + else: + bve_view.user_ids = self.env['res.users'].sudo().search([]) + + @api.depends('name') + @api.multi + 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 + + name = fields.Char(required=True, copy=False) + 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 = Serialized( + 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.") + 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) + + _sql_constraints = [ + ('name_uniq', + 'unique(name)', + _('Custom BI View names must be unique!')), + ] + + @api.multi + def _create_view_arch(self): + self.ensure_one() + + def _get_field_def(name, def_type=''): + if not def_type: + return '' + return """""".format( + name, def_type + ) + + def _get_field_type(field_info): + row = field_info['row'] and 'row' + column = field_info['column'] and 'col' + measure = field_info['measure'] and 'measure' + return row or column or measure + + def _get_field_list(fields_info): + view_fields = [] + for field_info in fields_info: + field_name = field_info['name'] + def_type = _get_field_type(field_info) + if def_type: + field_def = _get_field_def(field_name, def_type) + view_fields.append(field_def) + return view_fields + + fields_info = json.loads(self.data) + view_fields = _get_field_list(fields_info) + return view_fields + + @api.multi + def _create_tree_view_arch(self): + self.ensure_one() + + def _get_field_def(name): + return """""".format( + name + ) + + def _get_field_list(fields_info): + view_fields = [] + for field_info in fields_info: + field_name = field_info['name'] + if field_info['list'] and 'join_node' not in field_info: + field_def = _get_field_def(field_name) + view_fields.append(field_def) + return view_fields + + fields_info = json.loads(self.data) + + view_fields = _get_field_list(fields_info) + return view_fields + + @api.multi + def _create_bve_view(self): + self.ensure_one() + + # create views + View = self.env['ir.ui.view'] + old_views = View.sudo().search([('model', '=', self.model_name)]) + old_views.unlink() + + view_vals = [{ + '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())) + }] + + for vals in view_vals: + View.sudo().create(vals) + + # create Tree view + tree_view = View.sudo().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_vals = { + 'name': self.name, + 'res_model': self.model_name, + 'type': 'ir.actions.act_window', + 'view_type': 'form', + 'view_mode': 'tree,graph,pivot', + 'view_id': tree_view.id, + 'context': "{'service_name': '%s'}" % self.name, + } + + ActWindow = self.env['ir.actions.act_window'] + action_id = ActWindow.sudo().create(action_vals) + self.write({ + 'action_id': action_id.id, + 'view_id': tree_view.id, + 'state': 'created' + }) + + @api.multi + def _build_access_rules(self, model): + self.ensure_one() + + def group_ids_with_access(model_name, access_mode): + # pylint: disable=sql-injection + self.env.cr.execute('''SELECT + g.id + FROM + ir_model_access a + JOIN ir_model m ON (a.model_id=m.id) + JOIN res_groups g ON (a.group_id=g.id) + WHERE + m.model=%s AND + a.active = true AND + a.perm_''' + access_mode, (model_name,)) + res = self.env.cr.fetchall() + return [x[0] for x in res] + + info = json.loads(self.data) + model_names = list(set([f['model'] for f in info])) + read_groups = set.intersection(*[set( + group_ids_with_access(model_name, 'read') + ) for model_name in model_names]) + + if not read_groups and not self.group_ids: + raise UserError(_('Please select at least one group' + ' on the security tab.')) + + # read access + for group in read_groups: + self.env['ir.model.access'].sudo().create({ + 'name': 'read access to ' + self.model_name, + 'model_id': model.id, + 'group_id': group, + 'perm_read': True, + }) + + # read and write access + for group in self.group_ids: + self.env['ir.model.access'].sudo().create({ + 'name': 'read-write access to ' + self.model_name, + 'model_id': model.id, + 'group_id': group.id, + 'perm_read': True, + 'perm_write': True, + }) + + @api.model + def _create_sql_view(self): + + def get_fields_info(fields_data): + fields_info = [] + for field_data in fields_data: + field = self.env['ir.model.fields'].browse(field_data['id']) + vals = { + 'table': self.env[field.model_id.model]._table, + 'table_alias': field_data['table_alias'], + 'select_field': field.name, + 'as_field': 'x_' + field_data['name'], + 'join': False, + 'model': field.model_id.model + } + if field_data.get('join_node'): + vals.update({'join': field_data['join_node']}) + fields_info.append(vals) + return fields_info + + def get_join_nodes(info): + join_nodes = [ + (f['table_alias'], + f['join'], + f['select_field']) for f in info if f['join'] is not False] + return join_nodes + + def get_tables(info): + tables = set([(f['table'], f['table_alias']) for f in info]) + return tables + + def get_fields(info): + return [("{}.{}".format(f['table_alias'], + f['select_field']), + f['as_field']) for f in info if 'join_node' not in f] + + def check_empty_data(data): + if not data or data == '[]': + raise UserError(_('No data to process.')) + + check_empty_data(self.data) + + formatted_data = json.loads(self.data) + info = get_fields_info(formatted_data) + select_fields = get_fields(info) + tables = get_tables(info) + join_nodes = get_join_nodes(info) + + table_name = self.model_name.replace('.', '_') + + # robustness in case something went wrong + # pylint: disable=sql-injection + self._cr.execute('DROP TABLE IF EXISTS "%s"' % table_name) + + basic_fields = [ + ("t0.id", "id") + ] + # pylint: disable=sql-injection + q = """CREATE or REPLACE VIEW %s as ( + SELECT %s + FROM %s + WHERE %s + )""" % (table_name, ','.join( + ["{} AS {}".format(f[0], f[1]) + for f in basic_fields + select_fields]), ','.join( + ["{} AS {}".format(t[0], t[1]) + for t in list(tables)]), " AND ".join( + ["{}.{} = {}.id".format(j[0], j[2], j[1]) + for j in join_nodes] + ["TRUE"])) + + self.env.cr.execute(q) + + @api.multi + def action_translations(self): + self.ensure_one() + model = self.env['ir.model'].sudo().search([ + ('model', '=', self.model_name) + ]) + translation_obj = self.env['ir.translation'].sudo() + translation_obj.translate_fields('ir.model', model.id) + for field_id in model.field_id.ids: + translation_obj.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') + ], + } + + @api.multi + def action_create(self): + self.ensure_one() + + def _prepare_field(field_data): + if not field_data['custom']: + field = self.env['ir.model.fields'].browse(field_data['id']) + vals = { + 'name': 'x_' + field_data['name'], + 'complete_name': field.complete_name, + 'model': self.model_name, + 'relation': field.relation, + 'field_description': field_data.get( + 'description', field.field_description), + 'ttype': field.ttype, + 'selection': field.selection, + 'size': field.size, + 'state': 'manual', + 'readonly': True + } + 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)}) + return vals + + # clean dirty view (in case something went wrong) + self.action_reset() + + # create sql view + self._create_sql_view() + + # create model and fields + data = json.loads(self.data) + model_vals = { + 'name': self.name, + 'model': self.model_name, + 'state': 'manual', + 'field_id': [ + (0, 0, _prepare_field(field)) + for field in data + if 'join_node' not in field] + } + Model = self.env['ir.model'].sudo().with_context(bve=True) + model = Model.create(model_vals) + + # give access rights + self._build_access_rules(model) + + # create tree, graph and pivot views + self._create_bve_view() + + @api.multi + def open_view(self): + self.ensure_one() + [action] = self.action_id.read() + action['display_name'] = _('BI View') + return action + + @api.multi + def copy(self, default=None): + self.ensure_one() + default = dict(default or {}, name=_("%s (copy)") % self.name) + return super(BveView, self).copy(default=default) + + @api.multi + 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'].sudo().search([ + ('action', '=', action) + ]) + has_menus = True if menus else False + menus.unlink() + + if self.action_id.view_id: + self.action_id.view_id.sudo().unlink() + self.action_id.sudo().unlink() + + self.env['ir.ui.view'].sudo().search( + [('model', '=', self.model_name)]).unlink() + ir_models = self.env['ir.model'].sudo().search([ + ('model', '=', self.model_name) + ]) + for model in ir_models: + model.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'} + + @api.multi + def unlink(self): + for view in self: + if view.state == 'created': + raise UserError( + _('You cannot delete a created view! ' + 'Reset the view to draft first.')) + return super(BveView, self).unlink() diff --git a/bi_view_editor/models/ir_model.py b/bi_view_editor/models/ir_model.py new file mode 100644 index 0000000..96c4442 --- /dev/null +++ b/bi_view_editor/models/ir_model.py @@ -0,0 +1,291 @@ +# Copyright 2015-2018 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from flectra import api, models, registry + +NO_BI_MODELS = [ + 'temp.range', + 'account.statement.operation.template', + 'fetchmail.server' +] + +NO_BI_FIELDS = [ + 'id', + 'create_uid', + 'create_date', + 'write_uid', + 'write_date' +] + +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_unknow(model_name): + if model_name == 'Unknow' 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_unknow(model_name) + if not count_check: + return self.env['ir.model.access'].check( + model['model'], 'read', False) + return False + + @api.model + def sort_filter_models(self, models_list): + res = sorted( + filter(self._filter_bi_models, models_list), + key=lambda x: x['name']) + return res + + @api.model + def _search_fields(self, domain): + Fields = self.env['ir.model.fields'] + fields = Fields.sudo().search(domain) + return fields + + @api.model + def get_related_fields(self, model_ids): + """ Return list of field dicts for all fields that can be + joined with models in model_ids + """ + + def get_model_list(model_ids): + model_list = [] + domain = [('model_id', 'in', list(model_ids.values())), + ('store', '=', True), + ('ttype', 'in', ['many2one'])] + filtered_fields = self._search_fields(domain) + for model in model_ids.items(): + for field in filtered_fields: + if model[1] == field.model_id.id: + model_list.append( + dict(dict_for_field(field), + join_node=-1, + table_alias=model[0]) + ) + return model_list + + def get_relation_list(model_ids, model_names): + relation_list = [] + domain = [('relation', 'in', list(model_names.values())), + ('store', '=', True), + ('ttype', 'in', ['many2one'])] + filtered_fields = self._search_fields(domain) + for model in model_ids.items(): + for field in filtered_fields: + if model_names[model[1]] == field['relation']: + relation_list.append( + dict(dict_for_field(field), + join_node=model[0], + table_alias=-1) + ) + return relation_list + + models = self.sudo().browse(model_ids.values()) + model_names = {} + for model in models: + model_names.update({model.id: model.model}) + + model_list = get_model_list(model_ids) + relation_list = get_relation_list(model_ids, model_names) + + return relation_list + model_list + + @api.model + def get_related_models(self, model_ids): + """ Return list of model dicts for all models that can be + joined with the already selected models. + """ + + def _get_field(fields, orig, target): + field_list = [] + for f in fields: + if f[orig] == -1: + field_list.append(f[target]) + return field_list + + def _get_list_id(model_ids, fields): + list_model = list(model_ids.values()) + list_model += _get_field(fields, 'table_alias', 'model_id') + return list_model + + def _get_list_relation(fields): + list_model = _get_field(fields, 'join_node', 'relation') + return list_model + + models_list = [] + related_fields = self.get_related_fields(model_ids) + list_id = _get_list_id(model_ids, related_fields) + list_model = _get_list_relation(related_fields) + domain = ['|', + ('id', 'in', list_id), + ('model', 'in', list_model)] + for model in self.sudo().search(domain): + models_list.append(dict_for_model(model)) + return self.sort_filter_models(models_list) + + @api.model + def get_models(self): + """ Return list of model dicts for all available models. + """ + + models_list = [] + for model in self.search([('transient', '=', False)]): + models_list.append(dict_for_model(model)) + return self.sort_filter_models(models_list) + + @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 _get_model_ids(field_data): + model_ids = dict([(field['table_alias'], + field['model_id']) for field in field_data]) + return model_ids + + def _get_join_nodes_dict(model_ids, new_field): + join_nodes = [] + for alias, model_id in model_ids.items(): + if model_id == new_field['model_id']: + join_nodes.append({'table_alias': alias}) + for field in self.get_related_fields(model_ids): + c = [field['join_node'] == -1, field['table_alias'] == -1] + a = (new_field['model'] == field['relation']) + b = (new_field['model_id'] == field['model_id']) + if (a and c[0]) or (b and c[1]): + join_nodes.append(field) + return join_nodes + + 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 + + model_ids = _get_model_ids(field_data) + keys = [(field['table_alias'], field['id']) + for field in field_data if field.get('join_node', -1) != -1] + join_nodes = _get_join_nodes_dict(model_ids, new_field) + join_nodes = remove_duplicate_nodes(join_nodes) + + return list(filter( + lambda x: 'id' not in x or + (x['table_alias'], x['id']) not in keys, join_nodes)) + + @api.model + def get_fields(self, model_id): + domain = [ + ('model_id', '=', model_id), + ('store', '=', True), + ('name', 'not in', NO_BI_FIELDS), + ('ttype', 'not in', NO_BI_TTYPES) + ] + fields_dict = [] + filtered_fields = self._search_fields(domain) + for field in filtered_fields: + fields_dict.append( + {'id': field.id, + 'model_id': model_id, + 'name': field.name, + 'description': field.field_description, + 'type': field.ttype, + 'custom': False, + 'model': field.model_id.model, + 'model_name': field.model_id.name + } + ) + sorted_fields = sorted( + fields_dict, + key=lambda x: x['description'], + reverse=True + ) + return sorted_fields + + @api.model + def create(self, vals): + if self.env.context and self.env.context.get('bve'): + vals['state'] = 'base' + res = super(IrModel, self).create(vals) + + # this sql update is necessary since a write method here would + # be not working (an orm constraint is restricting the modification + # of the state field while updating ir.model) + q = "UPDATE ir_model SET state = 'manual' WHERE id = %s" + self.env.cr.execute(q, (res.id, )) + + # # update registry + if self.env.context.get('bve'): + # setup models; this reloads custom models in registry + self.pool.setup_models(self._cr) + + # signal that registry has changed + registry(self.env.cr.dbname).signal_changes() + + return res diff --git a/bi_view_editor/models/models.py b/bi_view_editor/models/models.py new file mode 100644 index 0000000..397fafb --- /dev/null +++ b/bi_view_editor/models/models.py @@ -0,0 +1,63 @@ +# Copyright 2017-2018 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import logging + +from flectra import _, api, models +from flectra.exceptions import UserError + +_logger = logging.getLogger(__name__) + + +@api.model +def _bi_view(_name): + return _name[0:6] == 'x_bve.' + + +_auto_init_orig = models.BaseModel._auto_init + + +@api.model_cr_context +def _auto_init(self): + + # This monkey patch is meant to fix an error (probably + # introduced by https://github.com/flectra/flectra/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 _setup_complete(self): + if not _bi_view(self._name): + super(Base, self)._setup_complete() + else: + self.pool.models[self._name]._log_access = False + + @api.model + def _read_group_process_groupby(self, gb, query): + if not _bi_view(self._name): + return super(Base, self)._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(Base, self)._read_group_process_groupby(gb, query) + + @api.model + def _add_magic_fields(self): + if _bi_view(self._name): + self._log_access = False + return super(Base, self)._add_magic_fields() 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 0000000..81d91dc --- /dev/null +++ b/bi_view_editor/security/ir.model.access.csv @@ -0,0 +1,2 @@ +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 diff --git a/bi_view_editor/security/rules.xml b/bi_view_editor/security/rules.xml new file mode 100644 index 0000000..e558f9d --- /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 0000000..bd6f94b 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 0000000..2827035 --- /dev/null +++ b/bi_view_editor/static/description/index.html @@ -0,0 +1,489 @@ + + + + + + +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

+ +
+

Usage

+

To graphically design your analysis data-set:

+
    +
  • From the Dashboards menu, select “Custom BI Views”
  • +
  • Browse trough the business objects in the Query 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
  • +
  • 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.
  • +
+
+
+

Known issues / Roadmap

+
    +
  • Non-stored fields and many2many fields are not supported
  • +
  • Provide graph view for table relations
  • +
  • Extend the capabilities of the tree views (e.g. add sums)
  • +
  • Provide a tutorial (eg. a working example of usage)
  • +
  • Implement a more advanced UI, with possibilities to use LEFT JOIN as default instead of INNER JOIN
  • +
  • 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
  • +
  • Store the JSON data structure in ORM
  • +
  • Would be nice if models available to select when creating a view are limited to the ones that have intersecting groups (for non technical users)
  • +
+
+
+

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

+
+

Images

+
    +
  • Odoo Community Association: Icon.
  • +
+
+
+

Funders

+

The development of this module 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 0000000..66789fa 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 0000000..28b7ae6 --- /dev/null +++ b/bi_view_editor/static/src/css/bve.css @@ -0,0 +1,199 @@ +.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: .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 { + margin-top: 0px; + margin-bottom: 0px; +} + +.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; +} \ No newline at end of file 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 0000000..e2a1a79 --- /dev/null +++ b/bi_view_editor/static/src/js/bi_view_editor.FieldList.js @@ -0,0 +1,305 @@ +/* Copyright 2015-2018 Onestein () + * License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ + +flectra.define('bi_view_editor.FieldList', function (require) { + "use strict"; + + var core = require('web.core'); + var qweb = core.qweb; + var Widget = require('web.Widget'); + + var FieldListContextMenu = Widget.extend({ + start: function () { + var res = this._super.apply(this, arguments); + this.$el.mouseleave(function () { + $(this).addClass('hidden'); + }); + return res; + }, + open: function (x, y) { + this.$el.css({ + 'left': x + 'px', + 'top': y + 'px' + }); + this.$el.removeClass('hidden'); + return _.extend({}, window.Backbone.Events); + } + }); + + var FieldListFieldContextMenu = FieldListContextMenu.extend({ + template: 'bi_view_editor.FieldList.FieldContextMenu', + open: function (x, y, 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); + }); + + return events; + } + }); + + var FieldListJoinContextMenu = FieldListContextMenu.extend({ + template: 'bi_view_editor.FieldList.JoinContextMenu', + open: function (x, y, node) { + 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_join = new FieldListJoinContextMenu(this); + this.contextmenu_join.appendTo(this.$el); + 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:last").addClass('hidden'); + } else { + this.$el.find('input[type="text"]').removeAttr('disabled'); + this.$el.find(".delete-button:last").removeClass('hidden'); + } + 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); + + this.$el.find(".delete-button").addClass('hidden'); + this.$el.find(".delete-button:last").removeClass('hidden'); + this.order(); + }, + remove: function (id) { + var $item = this.$el.find('tr[data-id="' + id + '"]'); + $item.remove(); + this.cleanJoinNodes(); + this.$el.find(".delete-button").addClass('hidden'); + this.$el.find(".delete-button:last").removeClass('hidden'); + 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]); + } + this.$el.find(".delete-button").addClass('hidden'); + this.$el.find(".delete-button:last").removeClass('hidden'); + }, + 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.data('field')).on('change', function (f) { + $item.data('field', f); + this.refreshItem($item); + this.trigger('updated'); + }.bind(this)); + }, + 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('hidden'); + } else { + $attribute.addClass('hidden'); + } + }); + }, + removeClicked: function (e) { + var $button = $(e.currentTarget); + var id = $button.attr('data-id'); + this.remove(id); + }, + keyupDescription: function () { + this.trigger('updated'); + }, + cleanJoinNodes: function () { + var aliases = $.makeArray(this.$el.find("tbody tr").map(function () { + var data = $(this).data('field'); + return data.table_alias.localeCompare(data.join_node) > 0 ? data.join_node : data.table_alias; + })); + + this.$el.find("tbody tr").each(function () { + var data = $(this).data('field'); + if (typeof data.join_node === 'undefined') { + return; + } + var no_alias = data.table_alias.localeCompare(data.join_node) > 0 && + aliases.indexOf(data.table_alias) === -1; + if (no_alias || + aliases.indexOf(data.join_node) === -1) { + $(this).remove(); + } + }); + }, + getOrder: function () { + var items = this.get(); + var ordered = items.sort(function (a, b) { + var res = a.table_alias.localeCompare(b.table_alias); + if (res === 0) { + var both_join_node = a.join_node && b.join_node; + var both_not_join_node = !a.join_node && !b.join_node; + if (both_join_node || both_not_join_node) { + return 0; + } else if (!a.join_node && b.join_node) { + if (b.table_alias.localeCompare(b.join_node) > 0) { + return 1; + } + return -1; + } else if (a.join_node && !b.join_node) { + if (a.table_alias.localeCompare(a.join_node) > 0) { + return -1; + } + return 1; + } + } + return res; + }); + + var res = []; + _.each(ordered, function (item) { + var already_exists = _.findIndex(res, function (f) { + return f._id === item._id; + }) !== -1; + if (already_exists) { + return; + } + res.push(item); + if (item.join_node) { + var join_node_fields = _.filter(ordered, function (f) { + return f.table_alias === item.join_node && !f.join_node; + }); + res = _.union(res, join_node_fields); + } + }); + return res; + }, + order: function () { + var order = this.getOrder(); + var $rows = this.$el.find("tbody tr"); + + $rows.sort(function (a, b) { + var a_index = _.findIndex(order, function (item) { + return item._id === $(a).data('field')._id; + }); + var b_index = _.findIndex(order, function (item) { + return item._id === $(b).data('field')._id; + }); + return a_index - b_index; + }).appendTo(this.$el.find("tbody")); + } + }); + + 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 0000000..be2fafd --- /dev/null +++ b/bi_view_editor/static/src/js/bi_view_editor.JoinNodeDialog.js @@ -0,0 +1,52 @@ +/* Copyright 2015-2018 Onestein () + * License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ + +flectra.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 0000000..4d29695 --- /dev/null +++ b/bi_view_editor/static/src/js/bi_view_editor.ModelList.js @@ -0,0 +1,171 @@ +/* Copyright 2015-2018 Onestein () + * License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ + +flectra.define('bi_view_editor.ModelList', function (require) { + "use strict"; + + var Widget = require('web.Widget'); + var core = require('web.core'); + var session = require('web.session'); + 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) { + if (model_ids) { + return this._rpc({ + model: 'ir.model', + method: 'get_related_models', + args: [model_ids], + context: { + lang: session.user_context.lang + } + }); + } + return this._rpc({ + model: 'ir.model', + method: 'get_models', + context: { + lang: session.user_context.lang + } + }); + }, + loadFields: function (model_id) { + if (!(model_id in this.cache_fields)) { + var deferred = this._rpc({ + model: 'ir.model', + method: 'get_fields', + args: [model_id], + context: { + lang: session.user_context.lang + } + }); + 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).done(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).done(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('hidden'); + } else { + $(this).removeClass('hidden'); + } + }); + 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 0000000..d8639df --- /dev/null +++ b/bi_view_editor/static/src/js/bi_view_editor.js @@ -0,0 +1,147 @@ +/* Copyright 2015-2018 Onestein () + * License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */ + +flectra.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")); + 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(); + 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 () { + console.log(this.field_list.get()); + this.loadAndPopulateModelList(); + this._setValue(this.field_list.get()); + }, + renderValue: function () { + this.field_list.set(JSON.parse(this.value)); + }, + updateMode: function () { + if (this.mode === 'readonly') { + this.$el.find('.clear-btn').addClass('hidden'); + this.$el.find(".body .right").droppable("option", "disabled", true); + } else { + this.$el.find('.clear-btn').removeClass('hidden'); + 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).done(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 = 0; + 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 { + var table_alias = this.getTableAlias(data); + data.table_alias = table_alias; + 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 0000000..fb82e79 --- /dev/null +++ b/bi_view_editor/static/src/xml/bi_view_editor.xml @@ -0,0 +1,183 @@ + + diff --git a/bi_view_editor/templates/assets_template.xml b/bi_view_editor/templates/assets_template.xml new file mode 100644 index 0000000..654de88 --- /dev/null +++ b/bi_view_editor/templates/assets_template.xml @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/bi_view_editor/tests/__init__.py b/bi_view_editor/tests/__init__.py new file mode 100644 index 0000000..b88bba1 --- /dev/null +++ b/bi_view_editor/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import test_bi_view diff --git a/bi_view_editor/tests/test_bi_view.py b/bi_view_editor/tests/test_bi_view.py new file mode 100644 index 0000000..13f04f5 --- /dev/null +++ b/bi_view_editor/tests/test_bi_view.py @@ -0,0 +1,251 @@ +# Copyright 2017-2018 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import json + +from flectra.tests.common import TransactionCase, at_install, post_install +from flectra.exceptions import UserError + + +class TestBiViewEditor(TransactionCase): + + def setUp(self): + + def _get_models(model_name_list): + Model = self.env['ir.model'] + return (Model.search( + [('model', '=', name)]) for name in model_name_list) + + def _get_fields(model_field_list): + ModelFields = self.env['ir.model.fields'] + return (ModelFields.search( + [('model', '=', model_field[0]), + ('name', '=', model_field[1])], + limit=1) for model_field in model_field_list) + + def get_new_field(self): + new_field = { + 'model_id': self.partner_model.id, + 'name': self.partner_field_name, + 'custom': False, + 'id': self.partner_field.id, + 'model': self.partner_model_name, + 'type': self.partner_field.ttype, + 'model_name': self.partner_model.name, + 'description': self.partner_field.field_description + } + return new_field + + super(TestBiViewEditor, self).setUp() + self.partner_model_name = 'res.partner' + self.partner_field_name = 'name' + self.partner_company_field_name = 'company_id' + self.company_model_name = 'res.company' + self.company_field_name = 'name' + + self.bi_view1 = None + + self.partner_model, self.company_model = _get_models( + [self.partner_model_name, self.company_model_name]) + + (self.partner_field, + self.partner_company_field, + self.company_field) = _get_fields([ + (self.partner_model_name, self.partner_field_name), + (self.partner_model_name, self.partner_company_field_name), + (self.company_model_name, self.company_field_name)]) + + data = [ + {'model_id': self.partner_model.id, + 'name': self.partner_field_name, + 'model_name': self.partner_model.name, + 'model': self.partner_model_name, + 'custom': 0, + 'type': self.partner_field.ttype, + 'id': self.partner_field.id, + 'description': self.partner_field.field_description, + 'table_alias': 't0', + 'row': 0, + 'column': 1, + 'list': 1, + 'measure': 0 + }, + {'model_id': self.partner_model.id, + 'name': self.partner_company_field_name, + 'table_alias': 't0', + 'custom': 0, + 'relation': self.company_model_name, + 'model': self.partner_model_name, + 'model_name': self.partner_model.name, + 'type': self.partner_company_field.ttype, + 'id': self.partner_company_field.id, + 'join_node': 't1', + 'description': self.partner_company_field.field_description, + 'row': 0, + 'column': 0, + 'list': 1, + 'measure': 0 + }, + {'model_id': self.company_model.id, + 'name': 'name_1', + 'model_name': self.company_model.name, + 'model': self.company_model_name, + 'custom': 0, + 'type': self.company_field.ttype, + 'id': self.company_field.id, + 'description': self.company_field.field_description, + 'table_alias': 't1', + 'row': 1, + 'column': 0, + 'list': 0, + 'measure': 0 + } + ] + format_data = json.dumps(data) + + self.bi_view1_vals = { + 'state': 'draft', + 'data': format_data + } + + self.new_field = get_new_field(self) + + def test_01_get_fields(self): + Model = self.env['ir.model'] + fields = Model.get_fields(self.partner_model.id) + self.assertIsInstance(fields, list) + self.assertGreater(len(fields), 0) + + def test_02_get_join_nodes(self): + Fields = self.env['ir.model.fields'] + field_res_users = Fields.search([ + ('name', '=', 'login'), + ('model', '=', 'res.users') + ], limit=1) + field_data = [{ + 'model_id': field_res_users.model_id.id, + 'name': 'login', + 'column': False, + 'table_alias': 't0', + 'custom': False, + 'measure': False, + 'id': field_res_users.id, + 'model': 'res.users', + 'row': False, + 'type': 'char', + 'model_name': 'Users', + 'description': 'Login' + }] + new_field = self.new_field + Model = self.env['ir.model'] + nodes = Model.get_join_nodes(field_data, new_field) + self.assertIsInstance(nodes, list) + self.assertGreater(len(nodes), 0) + + def test_03_get_join_nodes(self): + new_field = self.new_field + Model = self.env['ir.model'] + nodes = Model.get_join_nodes([], new_field) + self.assertIsInstance(nodes, list) + self.assertEqual(len(nodes), 0) + + def test_04_get_related_models(self): + Model = self.env['ir.model'] + related_models = Model.get_related_models({ + 't0': self.partner_model.id, + 't1': self.company_model.id + }) + self.assertIsInstance(related_models, list) + self.assertGreater(len(related_models), 0) + + def test_05_create_copy_view(self): + vals = self.bi_view1_vals + vals.update({'name': 'Test View1'}) + + # create + bi_view1 = self.env['bve.view'].create(vals) + self.assertIsNotNone(bi_view1) + self.assertEqual(len(bi_view1), 1) + self.assertEqual(bi_view1.state, 'draft') + + # copy + bi_view2 = bi_view1.copy() + self.assertEqual(bi_view2.name, 'Test View1 (copy)') + + def test_06_create_group_bve_object(self): + vals = self.bi_view1_vals + employees_group = self.env.ref('base.group_user') + vals.update({ + 'name': 'Test View2', + 'group_ids': [(6, 0, [employees_group.id])], + }) + + bi_view2 = self.env['bve.view'].create(vals) + self.assertEqual(len(bi_view2.user_ids), len(employees_group.users)) + + def test_07_check_empty_data(self): + vals = { + 'name': 'Test View Empty', + 'state': 'draft', + 'data': '' + } + bi_view4 = self.env['bve.view'].create(vals) + self.assertEqual(len(bi_view4), 1) + + # create sql view + with self.assertRaises(UserError): + bi_view4.action_create() + + def test_08_get_models(self): + Model = self.env['ir.model'] + models = Model.get_models() + self.assertIsInstance(models, list) + self.assertGreater(len(models), 0) + + @at_install(False) + @post_install(True) + def test_09_create_open_bve_object(self): + vals = self.bi_view1_vals + employees_group = self.env.ref('base.group_user') + vals.update({ + 'name': 'Test View4', + 'group_ids': [(6, 0, [employees_group.id])], + }) + bi_view = self.env['bve.view'].create(vals) + self.assertEqual(len(bi_view), 1) + + # create bve object + bi_view.action_create() + model = self.env['ir.model'].search([ + ('model', '=', 'x_bve.testview4'), + ('name', '=', 'Test View4') + ]) + self.assertEqual(len(model), 1) + + # open view + open_action = bi_view.open_view() + self.assertEqual(isinstance(open_action, dict), True) + + # try to remove view + with self.assertRaises(UserError): + bi_view.unlink() + + @at_install(False) + @post_install(True) + def test_10_create_open_bve_object_apostrophe(self): + vals = self.bi_view1_vals + employees_group = self.env.ref('base.group_user') + vals.update({ + 'name': "Test View5", + 'group_ids': [(6, 0, [employees_group.id])], + }) + data_list = list() + for r in json.loads(vals['data']): + r['model_name'] = "model'name" + data_list.append(r) + new_format_data = json.dumps(data_list) + vals.update({'data': new_format_data}) + bi_view = self.env['bve.view'].create(vals) + self.assertEqual(len(bi_view), 1) + # create bve object + bi_view.action_create() diff --git a/bi_view_editor/views/bve_view.xml b/bi_view_editor/views/bve_view.xml new file mode 100644 index 0000000..cdc3ee1 --- /dev/null +++ b/bi_view_editor/views/bve_view.xml @@ -0,0 +1,87 @@ + + + + + Translations + ir.actions.act_window + ir.translation + form + [('res_id', '=', active_record.), ('name', '=', 'ir.model.fields,field_description')] + + + + + bve.view + + + + + + + + + bve.view + +
+
+
+ +
+
+

+ +

+ + + + + + + + + + + + + +
+
+
+
+ + + Custom BI Views + ir.actions.act_window + bve.view + form + tree,form + +

+ Click to create a Custom Query Object. +

+

+ +

+
+
+ + + + +
diff --git a/bi_view_editor/wizard/__init__.py b/bi_view_editor/wizard/__init__.py new file mode 100644 index 0000000..262e6a5 --- /dev/null +++ b/bi_view_editor/wizard/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import wizard_ir_model_menu_create diff --git a/bi_view_editor/wizard/wizard_ir_model_menu_create.py b/bi_view_editor/wizard/wizard_ir_model_menu_create.py new file mode 100644 index 0000000..e699cca --- /dev/null +++ b/bi_view_editor/wizard/wizard_ir_model_menu_create.py @@ -0,0 +1,38 @@ +# Copyright 2017-2018 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from flectra import api, models + + +class WizardModelMenuCreate(models.TransientModel): + _inherit = 'wizard.ir.model.menu.create' + + @api.multi + def menu_create(self): + if self.env.context.get('active_model') == 'bve.view': + self.ensure_one() + active_id = self.env.context.get('active_id') + bve_view = self.env['bve.view'].browse(active_id) + menu = self.env['ir.ui.menu'].create({ + 'name': self.name, + 'parent_id': self.menu_id.id, + 'action': 'ir.actions.act_window,%d' % (bve_view.action_id,) + }) + self.env['ir.model.data'].create({ + 'name': bve_view.name + ', id=' + str(menu.id), + 'noupdate': True, + 'module': 'bi_view_editor', + 'model': 'ir.ui.menu', + 'res_id': menu.id, + }) + return {'type': 'ir.actions.client', 'tag': 'reload'} + return super(WizardModelMenuCreate, self).menu_create() + + @api.model + def default_get(self, fields_list): + defaults = super(WizardModelMenuCreate, self).default_get(fields_list) + if self.env.context.get('active_model') == 'bve.view': + active_id = self.env.context.get('active_id') + bve_view = self.env['bve.view'].browse(active_id) + defaults.setdefault('name', bve_view.name) + return defaults diff --git a/report_context/COPYRIGHT b/report_context/COPYRIGHT new file mode 100644 index 0000000..31bc3dd --- /dev/null +++ b/report_context/COPYRIGHT @@ -0,0 +1,15 @@ +Most of the files are + + :Copyright: This stylesheet has been placed in the public domain. + Copyright 2019 Creu Blanca + Copyright 2018 Flectra Community + +Many files also contain contributions from third +parties. In this case the original copyright of +the contributions can be traced through the +history of the source version control system. + +When that is not the case, the files contain a prominent +notice stating the original copyright and applicable +license, or come with their own dedicated COPYRIGHT +and/or LICENSE file. \ No newline at end of file diff --git a/report_context/LICENSE b/report_context/LICENSE new file mode 100644 index 0000000..3939cd9 --- /dev/null +++ b/report_context/LICENSE @@ -0,0 +1,663 @@ +For copyright information, please see the COPYRIGHT file. + +GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. \ No newline at end of file diff --git a/report_context/README.rst b/report_context/README.rst new file mode 100644 index 0000000..4d8d2eb --- /dev/null +++ b/report_context/README.rst @@ -0,0 +1,96 @@ +============== +Report Context +============== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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/11.0/report_context + :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-11-0/reporting-engine-11-0-report_context + :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/11.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module adds a context variable to reports. A possible use for this +context could be hiding some fields or many other configuration options. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +To configure this module, you need to: + +* Enter Odoo in debug mode. +* To add a specific context to a report, you should go to Settings -> + Reporting -> Reporting and look for the report you want to edit on the + list. You will see that now they contain a new field called Context Value + , where you will be able to add all the desired context parameters. +* Go to Settings -> Parameters -> System Parameters. On the system + parameters list, look for report.default.context, which is a Python + dictionary variable where you can add a context that will be common for + all reports. + +It can also be added on the developer side using:: + + + YOUR CONTEXT HERE + + + +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 + +Contributors +~~~~~~~~~~~~ + +* Jaime Arroyo + +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. \ No newline at end of file diff --git a/report_context/__init__.py b/report_context/__init__.py new file mode 100644 index 0000000..91c5580 --- /dev/null +++ b/report_context/__init__.py @@ -0,0 +1,2 @@ +from . import controllers +from . import models diff --git a/report_context/__manifest__.py b/report_context/__manifest__.py new file mode 100644 index 0000000..868bcff --- /dev/null +++ b/report_context/__manifest__.py @@ -0,0 +1,21 @@ +# Copyright 2019 Creu Blanca +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'Report Context', + 'summary': """ + Adding context to reports""", + 'version': '2.0.1.0.0', + 'license': 'AGPL-3', + 'author': 'Creu Blanca,Odoo Community Association (OCA)', + 'website': 'https://gitlab.com/flectra-community/reporting-engine', + 'depends': [ + 'web', + ], + 'data': [ + 'views/ir_actions_report.xml', + 'data/config_parameter.xml', + ], + 'demo': [ + ], +} diff --git a/report_context/controllers/__init__.py b/report_context/controllers/__init__.py new file mode 100644 index 0000000..12a7e52 --- /dev/null +++ b/report_context/controllers/__init__.py @@ -0,0 +1 @@ +from . import main diff --git a/report_context/controllers/main.py b/report_context/controllers/main.py new file mode 100644 index 0000000..25d30c0 --- /dev/null +++ b/report_context/controllers/main.py @@ -0,0 +1,18 @@ +# Copyright 2019 Creu Blanca +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from flectra.addons.web.controllers import main as report +from flectra.http import route, request +import json + + +class ReportController(report.ReportController): + @route() + def report_routes(self, reportname, docids=None, converter=None, **data): + report = request.env['ir.actions.report']._get_report_from_name( + reportname) + original_context = json.loads(data.get('context', '{}')) + data['context'] = json.dumps(report.with_context( + original_context + )._get_context()) + return super().report_routes( + reportname, docids=docids, converter=converter, **data) diff --git a/report_context/data/config_parameter.xml b/report_context/data/config_parameter.xml new file mode 100644 index 0000000..f8a2b34 --- /dev/null +++ b/report_context/data/config_parameter.xml @@ -0,0 +1,10 @@ + + + + + report.default.context + {} + + + diff --git a/report_context/i18n/report_context.pot b/report_context/i18n/report_context.pot new file mode 100644 index 0000000..3993025 --- /dev/null +++ b/report_context/i18n/report_context.pot @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_context +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.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_context +#: model:ir.model.fields,field_description:report_context.field_ir_act_report_xml_context +msgid "Context Value" +msgstr "" + +#. module: report_context +#: model:ir.model.fields,help:report_context.field_ir_act_report_xml_context +msgid "Context dictionary as Python expression, empty by default (Default: {})" +msgstr "" + +#. module: report_context +#: model:ir.model,name:report_context.model_ir_actions_report +msgid "ir.actions.report" +msgstr "" + diff --git a/report_context/models/__init__.py b/report_context/models/__init__.py new file mode 100644 index 0000000..a248cf2 --- /dev/null +++ b/report_context/models/__init__.py @@ -0,0 +1 @@ +from . import ir_actions_report diff --git a/report_context/models/ir_actions_report.py b/report_context/models/ir_actions_report.py new file mode 100644 index 0000000..aed1476 --- /dev/null +++ b/report_context/models/ir_actions_report.py @@ -0,0 +1,36 @@ +# Copyright 2019 Creu Blanca +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from flectra.tools.safe_eval import safe_eval +from flectra import api, fields, models + + +class IrActionsReport(models.Model): + _inherit = 'ir.actions.report' + + context = fields.Char( + string='Context Value', default={}, + required=True, + help="Context dictionary as Python expression, empty by default " + "(Default: {})") + + def _get_context(self): + self.ensure_one() + context = self.env['ir.config_parameter'].sudo().get_param( + 'report.default.context', '{}') + # We must transform it to a dictionary + context = safe_eval(context or '{}') + report_context = safe_eval(self.context or '{}') + context.update(report_context) + context.update(self.env.context) + return context + + @api.multi + def render(self, res_ids, data=None): + return super(IrActionsReport, self.with_context( + self._get_context())).render(res_ids, data=data) + + @api.noguess + def report_action(self, docids, data=None, config=True): + return super(IrActionsReport, self.with_context( + self._get_context() + )).report_action(docids, data=data, config=config) diff --git a/report_context/static/description/icon.png b/report_context/static/description/icon.png new file mode 100644 index 0000000..3a0328b Binary files /dev/null and b/report_context/static/description/icon.png differ diff --git a/report_context/static/description/index.html b/report_context/static/description/index.html new file mode 100644 index 0000000..bda672a --- /dev/null +++ b/report_context/static/description/index.html @@ -0,0 +1,442 @@ + + + + + + +Report Context + + + +
+

Report Context

+ + +

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

+

This module adds a context variable to reports. A possible use for this +context could be hiding some fields or many other configuration options.

+

Table of contents

+ +
+

Usage

+

To configure this module, you need to:

+
    +
  • Enter Odoo in debug mode.
  • +
  • To add a specific context to a report, you should go to Settings -> +Reporting -> Reporting and look for the report you want to edit on the +list. You will see that now they contain a new field called Context Value +, where you will be able to add all the desired context parameters.
  • +
  • Go to Settings -> Parameters -> System Parameters. On the system +parameters list, look for report.default.context, which is a Python +dictionary variable where you can add a context that will be common for +all reports.
  • +
+

It can also be added on the developer side using:

+
+<record id="model_name.report_id" model="ir.actions.report">
+    <field name="context">YOUR CONTEXT HERE</field>
+</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
  • +
+
+ +
+

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/report_context/tests/__init__.py b/report_context/tests/__init__.py new file mode 100644 index 0000000..c72cd7a --- /dev/null +++ b/report_context/tests/__init__.py @@ -0,0 +1 @@ +from . import test_report_context diff --git a/report_context/tests/test_report_context.py b/report_context/tests/test_report_context.py new file mode 100644 index 0000000..fd28954 --- /dev/null +++ b/report_context/tests/test_report_context.py @@ -0,0 +1,47 @@ +# Copyright 2019 Creu Blanca +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from flectra.tests.common import TransactionCase + + +class TestReportContext(TransactionCase): + + def test_report_01(self): + company = self.browse_ref('base.main_company') + report = self.browse_ref('web.action_report_internalpreview') + self.env['ir.config_parameter'].sudo().set_param( + 'report.default.context', '{"test_parameter": 1}') + report.write({'context': '{"test_parameter": 2}'}) + action = report.with_context(test_parameter=3).report_action(company) + self.assertEqual(3, action['context']['test_parameter']) + + def test_report_02(self): + company = self.browse_ref('base.main_company') + report = self.browse_ref('web.action_report_internalpreview') + self.env['ir.config_parameter'].sudo().set_param( + 'report.default.context', '{"test_parameter": 1}') + report.write({'context': '{"test_parameter": 2}'}) + action = report.report_action(company) + self.assertEqual(2, action['context']['test_parameter']) + + def test_report_03(self): + company = self.browse_ref('base.main_company') + report = self.browse_ref('web.action_report_internalpreview') + self.env['ir.config_parameter'].sudo().set_param( + 'report.default.context', '{"test_parameter": 1}') + action = report.with_context(test_parameter=3).report_action(company) + self.assertEqual(3, action['context']['test_parameter']) + + def test_report_04(self): + company = self.browse_ref('base.main_company') + report = self.browse_ref('web.action_report_internalpreview') + report.write({'context': '{"test_parameter": 2}'}) + action = report.report_action(company) + self.assertEqual(2, action['context']['test_parameter']) + + def test_report_05(self): + company = self.browse_ref('base.main_company') + report = self.browse_ref('web.action_report_internalpreview') + self.env['ir.config_parameter'].sudo().set_param( + 'report.default.context', '{"test_parameter": 1}') + action = report.report_action(company) + self.assertEqual(1, action['context']['test_parameter']) diff --git a/report_context/views/ir_actions_report.xml b/report_context/views/ir_actions_report.xml new file mode 100644 index 0000000..cac25dc --- /dev/null +++ b/report_context/views/ir_actions_report.xml @@ -0,0 +1,18 @@ + + + + + + + ir.actions.report.context.form + ir.actions.report + + + + + + + + + diff --git a/report_csv/COPYRIGHT b/report_csv/COPYRIGHT new file mode 100644 index 0000000..07923d9 --- /dev/null +++ b/report_csv/COPYRIGHT @@ -0,0 +1,16 @@ +Most of the files are + + // © 2019 Creu Blanca + Copyright 2019 Creu Blanca + © 2019 Creu Blanca + Copyright 2018 Flectra Community + +Many files also contain contributions from third +parties. In this case the original copyright of +the contributions can be traced through the +history of the source version control system. + +When that is not the case, the files contain a prominent +notice stating the original copyright and applicable +license, or come with their own dedicated COPYRIGHT +and/or LICENSE file. \ No newline at end of file diff --git a/report_csv/LICENSE b/report_csv/LICENSE new file mode 100644 index 0000000..3939cd9 --- /dev/null +++ b/report_csv/LICENSE @@ -0,0 +1,663 @@ +For copyright information, please see the COPYRIGHT file. + +GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. \ No newline at end of file diff --git a/report_csv/README.rst b/report_csv/README.rst new file mode 100644 index 0000000..6d62c80 --- /dev/null +++ b/report_csv/README.rst @@ -0,0 +1,85 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +=============== +Base report csv +=============== + +This module provides a basic report class to generate csv report. + + +Usage +===== + +An example of CSV report for partners on a module called `module_name`: + +A python class :: + + from odoo import models + + class PartnerCSV(models.AbstractModel): + _name = 'report.report_csv.partner_csv' + _inherit = 'report.report_csv.abstract' + + def generate_csv_report(self, writer, data, partners): + writer.writeheader() + for obj in partners: + writer.writerow({ + 'name': obj.name, + 'email': obj.email, + }) + + def csv_report_options(self): + res = super().csv_report_options() + res['fieldnames'].append('name') + res['fieldnames'].append('email') + res['delimiter'] = ';' + res['quoting'] = csv.QUOTE_ALL + return res + + +A report XML record :: + + + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/143/11.0 + +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. + +Credits +======= + +Contributors +------------ + +* Enric Tobella + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +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. + +To contribute to this module, please visit https://odoo-community.org. \ No newline at end of file diff --git a/report_csv/__init__.py b/report_csv/__init__.py new file mode 100644 index 0000000..9b6fa04 --- /dev/null +++ b/report_csv/__init__.py @@ -0,0 +1,3 @@ +from . import controllers +from . import models +from . import report diff --git a/report_csv/__manifest__.py b/report_csv/__manifest__.py new file mode 100644 index 0000000..5775d5a --- /dev/null +++ b/report_csv/__manifest__.py @@ -0,0 +1,28 @@ +# Copyright 2019 Creu Blanca +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +{ + 'name': "Base report csv", + + 'summary': "Base module to create csv report", + 'author': 'Creu Blanca,' + 'Odoo Community Association (OCA)', + 'website': "https://gitlab.com/flectra-community/reporting-engine", + 'category': 'Reporting', + 'version': '2.0.1.0.0', + 'license': 'AGPL-3', + 'external_dependencies': { + 'python': [ + 'csv', + ], + }, + 'depends': [ + 'base', 'web', + ], + 'data': [ + 'views/webclient_templates.xml', + ], + 'demo': [ + 'demo/report.xml', + ], + 'installable': True, +} diff --git a/report_csv/controllers/__init__.py b/report_csv/controllers/__init__.py new file mode 100644 index 0000000..12a7e52 --- /dev/null +++ b/report_csv/controllers/__init__.py @@ -0,0 +1 @@ +from . import main diff --git a/report_csv/controllers/main.py b/report_csv/controllers/main.py new file mode 100644 index 0000000..97953ed --- /dev/null +++ b/report_csv/controllers/main.py @@ -0,0 +1,60 @@ +# Copyright (C) 2019 Creu Blanca +# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). + +from flectra.addons.web.controllers import main as report +from flectra.http import content_disposition, route, request +from flectra.tools.safe_eval import safe_eval + +import json +import time + + +class ReportController(report.ReportController): + @route() + def report_routes(self, reportname, docids=None, converter=None, **data): + if converter == 'csv': + report = request.env['ir.actions.report']._get_report_from_name( + reportname) + context = dict(request.env.context) + if docids: + docids = [int(i) for i in docids.split(',')] + if data.get('options'): + data.update(json.loads(data.pop('options'))) + if data.get('context'): + # Ignore 'lang' here, because the context in data is the one + # from the webclient *but* if the user explicitely wants to + # change the lang, this mechanism overwrites it. + data['context'] = json.loads(data['context']) + if data['context'].get('lang'): + del data['context']['lang'] + context.update(data['context']) + csv = report.with_context(context).render_csv( + docids, data=data + )[0] + filename = "%s.%s" % (report.name, "csv") + if docids: + obj = request.env[report.model].browse(docids) + if report.print_report_name and not len(obj) > 1: + report_name = safe_eval( + report.print_report_name, + {'object': obj, 'time': time, 'multi': False}) + filename = "%s.%s" % (report_name, "csv") + # When we print multiple records we still allow a custom + # filename. + elif report.print_report_name and len(obj) > 1: + report_name = safe_eval( + report.print_report_name, + {'objects': obj, 'time': time, 'multi': True}) + filename = "%s.%s" % (report_name, "csv") + csvhttpheaders = [ + ('Content-Type', 'text/csv'), + ('Content-Length', len(csv)), + ( + 'Content-Disposition', + content_disposition(filename) + ) + ] + return request.make_response(csv, headers=csvhttpheaders) + return super(ReportController, self).report_routes( + reportname, docids, converter, **data + ) diff --git a/report_csv/demo/report.xml b/report_csv/demo/report.xml new file mode 100644 index 0000000..7c7c5b4 --- /dev/null +++ b/report_csv/demo/report.xml @@ -0,0 +1,16 @@ + + + + + diff --git a/report_csv/i18n/report_csv.pot b/report_csv/i18n/report_csv.pot new file mode 100644 index 0000000..d2b2b7e --- /dev/null +++ b/report_csv/i18n/report_csv.pot @@ -0,0 +1,59 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_csv +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.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_csv +#: code:addons/report_csv/models/ir_report.py:18 +#, python-format +msgid "%s model was not found" +msgstr "" + +#. module: report_csv +#: model:ir.model.fields,field_description:report_csv.field_report_report_csv_abstract_display_name +#: model:ir.model.fields,field_description:report_csv.field_report_report_csv_partner_csv_display_name +msgid "Display Name" +msgstr "" + +#. module: report_csv +#: model:ir.model.fields,field_description:report_csv.field_report_report_csv_abstract_id +#: model:ir.model.fields,field_description:report_csv.field_report_report_csv_partner_csv_id +msgid "ID" +msgstr "" + +#. module: report_csv +#: model:ir.model.fields,field_description:report_csv.field_report_report_csv_abstract___last_update +#: model:ir.model.fields,field_description:report_csv.field_report_report_csv_partner_csv___last_update +msgid "Last Modified on" +msgstr "" + +#. module: report_csv +#: model:ir.actions.report,name:report_csv.partner_csv +msgid "Print to CSV" +msgstr "" + +#. module: report_csv +#: model:ir.model,name:report_csv.model_ir_actions_report +msgid "ir.actions.report" +msgstr "" + +#. module: report_csv +#: model:ir.model,name:report_csv.model_report_report_csv_abstract +msgid "report.report_csv.abstract" +msgstr "" + +#. module: report_csv +#: model:ir.model,name:report_csv.model_report_report_csv_partner_csv +msgid "report.report_csv.partner_csv" +msgstr "" + diff --git a/report_csv/models/__init__.py b/report_csv/models/__init__.py new file mode 100644 index 0000000..54dbf3d --- /dev/null +++ b/report_csv/models/__init__.py @@ -0,0 +1 @@ +from . import ir_report diff --git a/report_csv/models/ir_report.py b/report_csv/models/ir_report.py new file mode 100644 index 0000000..c966211 --- /dev/null +++ b/report_csv/models/ir_report.py @@ -0,0 +1,33 @@ +# Copyright 2019 Creu Blanca +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from flectra import api, fields, models, _ +from flectra.exceptions import UserError + + +class ReportAction(models.Model): + _inherit = 'ir.actions.report' + + report_type = fields.Selection(selection_add=[("csv", "csv")]) + + @api.model + def render_csv(self, docids, data): + report_model_name = 'report.%s' % self.report_name + report_model = self.env.get(report_model_name) + if report_model is None: + raise UserError(_('%s model was not found' % report_model_name)) + return report_model.with_context({ + 'active_model': self.model + }).create_csv_report(docids, data) + + @api.model + def _get_report_from_name(self, report_name): + res = super(ReportAction, self)._get_report_from_name(report_name) + if res: + return res + report_obj = self.env['ir.actions.report'] + qwebtypes = ['csv'] + conditions = [('report_type', 'in', qwebtypes), + ('report_name', '=', report_name)] + context = self.env['res.users'].context_get() + return report_obj.with_context(context).search(conditions, limit=1) diff --git a/report_csv/report/__init__.py b/report_csv/report/__init__.py new file mode 100644 index 0000000..9417550 --- /dev/null +++ b/report_csv/report/__init__.py @@ -0,0 +1,2 @@ +from . import report_csv +from . import report_partner_csv diff --git a/report_csv/report/report_csv.py b/report_csv/report/report_csv.py new file mode 100644 index 0000000..5f798ff --- /dev/null +++ b/report_csv/report/report_csv.py @@ -0,0 +1,60 @@ +# Copyright 2019 Creu Blanca +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from io import StringIO + +from flectra import models + +import logging +_logger = logging.getLogger(__name__) + +try: + import csv +except ImportError: + _logger.debug('Can not import csvwriter`.') + + +class ReportCSVAbstract(models.AbstractModel): + _name = 'report.report_csv.abstract' + + def _get_objs_for_report(self, docids, data): + """ + Returns objects for csv report. From WebUI these + are either as docids taken from context.active_ids or + in the case of wizard are in data. Manual calls may rely + on regular context, setting docids, or setting data. + + :param docids: list of integers, typically provided by + qwebactionmanager for regular Models. + :param data: dictionary of data, if present typically provided + by qwebactionmanager for TransientModels. + :param ids: list of integers, provided by overrides. + :return: recordset of active model for ids. + """ + if docids: + ids = docids + elif data and 'context' in data: + ids = data["context"].get('active_ids', []) + else: + ids = self.env.context.get('active_ids', []) + return self.env[self.env.context.get('active_model')].browse(ids) + + def create_csv_report(self, docids, data): + objs = self._get_objs_for_report(docids, data) + file_data = StringIO() + file = csv.DictWriter(file_data, **self.csv_report_options()) + self.generate_csv_report(file, data, objs) + file_data.seek(0) + return file_data.read(), 'csv' + + def csv_report_options(self): + """ + :return: dictionary of parameters. At least return 'fieldnames', but + you can optionally return parameters that define the export format. + Valid parameters include 'delimiter', 'quotechar', 'escapechar', + 'doublequote', 'skipinitialspace', 'lineterminator', 'quoting'. + """ + return {'fieldnames': []} + + def generate_csv_report(self, file, data, objs): + raise NotImplementedError() diff --git a/report_csv/report/report_partner_csv.py b/report_csv/report/report_partner_csv.py new file mode 100644 index 0000000..27c8252 --- /dev/null +++ b/report_csv/report/report_partner_csv.py @@ -0,0 +1,25 @@ +# Copyright 2019 Creu Blanca +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +import csv +from flectra import models + + +class PartnerCSV(models.AbstractModel): + _name = 'report.report_csv.partner_csv' + _inherit = 'report.report_csv.abstract' + + def generate_csv_report(self, writer, data, partners): + writer.writeheader() + for obj in partners: + writer.writerow({ + 'name': obj.name, + 'email': obj.email, + }) + + def csv_report_options(self): + res = super().csv_report_options() + res['fieldnames'].append('name') + res['fieldnames'].append('email') + res['delimiter'] = ';' + res['quoting'] = csv.QUOTE_ALL + return res diff --git a/report_csv/static/description/icon.png b/report_csv/static/description/icon.png new file mode 100644 index 0000000..3a0328b Binary files /dev/null and b/report_csv/static/description/icon.png differ diff --git a/report_csv/static/src/js/report/qwebactionmanager.js b/report_csv/static/src/js/report/qwebactionmanager.js new file mode 100644 index 0000000..affcdfc --- /dev/null +++ b/report_csv/static/src/js/report/qwebactionmanager.js @@ -0,0 +1,47 @@ +// © 2019 Creu Blanca +// License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). +flectra.define('report_csv.report', function(require){ +'use strict'; + +var ActionManager= require('web.ActionManager'); +var crash_manager = require('web.crash_manager'); +var framework = require('web.framework'); + +ActionManager.include({ + ir_actions_report: function (action, options){ + var self = this; + var cloned_action = _.clone(action); + if (cloned_action.report_type === 'csv') { + framework.blockUI(); + var report_csv_url = 'report/csv/' + cloned_action.report_name; + if (_.isUndefined(cloned_action.data) || + _.isNull(cloned_action.data) || + (_.isObject(cloned_action.data) && _.isEmpty(cloned_action.data))) + { + if(cloned_action.context.active_ids) { + report_csv_url += '/' + cloned_action.context.active_ids.join(','); + } + } else { + report_csv_url += '?options=' + encodeURIComponent(JSON.stringify(cloned_action.data)); + report_csv_url += '&context=' + encodeURIComponent(JSON.stringify(cloned_action.context)); + } + self.getSession().get_file({ + url: report_csv_url, + data: {data: JSON.stringify([ + report_csv_url, + cloned_action.report_type + ])}, + error: crash_manager.rpc_error.bind(crash_manager), + success: function (){ + if(cloned_action && options && !cloned_action.dialog){ + options.on_close(); + } + } + }); + framework.unblockUI(); + return; + } + return self._super(action, options); + } +}); +}); diff --git a/report_csv/tests/__init__.py b/report_csv/tests/__init__.py new file mode 100644 index 0000000..32ae3c2 --- /dev/null +++ b/report_csv/tests/__init__.py @@ -0,0 +1 @@ +from . import test_report diff --git a/report_csv/tests/test_report.py b/report_csv/tests/test_report.py new file mode 100644 index 0000000..270a717 --- /dev/null +++ b/report_csv/tests/test_report.py @@ -0,0 +1,55 @@ +# Copyright 2019 Creu Blanca +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from io import StringIO +from flectra.tests import common +import logging +_logger = logging.getLogger(__name__) +try: + import csv +except ImportError: + _logger.debug('Can not import csv.') + + +class TestReport(common.TransactionCase): + def setUp(self): + super().setUp() + report_object = self.env['ir.actions.report'] + self.csv_report = ( + self.env['report.report_csv.abstract'] + .with_context(active_model='res.partner') + ) + self.report_name = 'report_csv.partner_csv' + self.report = report_object._get_report_from_name(self.report_name) + self.docs = self.env['res.company'].search([], limit=1).partner_id + + def test_report(self): + report = self.report + self.assertEqual(report.report_type, 'csv') + rep = report.render(self.docs.ids, {}) + str_io = StringIO(rep[0]) + dict_report = list(csv.DictReader(str_io, delimiter=';', + quoting=csv.QUOTE_ALL)) + self.assertEqual(self.docs.name, dict(dict_report[0])['name']) + + def test_id_retrieval(self): + + # Typical call from WebUI with wizard + objs = self.csv_report._get_objs_for_report( + False, {"context": {"active_ids": self.docs.ids}}) + self.assertEquals(objs, self.docs) + + # Typical call from within code not to report_action + objs = self.csv_report.with_context( + active_ids=self.docs.ids)._get_objs_for_report(False, False) + self.assertEquals(objs, self.docs) + + # Typical call from WebUI + objs = self.csv_report._get_objs_for_report( + self.docs.ids, + {"data": [self.report_name, self.report.report_type]} + ) + self.assertEquals(objs, self.docs) + + # Typical call from render + objs = self.csv_report._get_objs_for_report(self.docs.ids, {}) + self.assertEquals(objs, self.docs) diff --git a/report_csv/views/webclient_templates.xml b/report_csv/views/webclient_templates.xml new file mode 100644 index 0000000..cf4a823 --- /dev/null +++ b/report_csv/views/webclient_templates.xml @@ -0,0 +1,13 @@ + + + +